-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from simi1505/Xschem-CACE
updated / added xschemrc for better useability for non IIC-OSIC-Tools user
- Loading branch information
Showing
36 changed files
with
361 additions
and
2,113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
#!/bin/bash | ||
FILE=_docs/ota-5t_schematic.md | ||
cp $FILE $FILE.tmp | ||
# fix paths for Quarto rendering | ||
sed 's#/ota#/cace/_docs/ota#g' $FILE.tmp > $FILE | ||
cp $FILE $FILE.tmp | ||
# suppress numbering and listing of headings | ||
sed '/^#/ s/$/ {.unnumbered .unlisted}' $FILE.tmp > $FILE | ||
set -euo pipefail | ||
FILE="_docs/ota-5t_schematic.md" | ||
TMP_FILE="${FILE}.tmp" | ||
|
||
# Check if the file exists | ||
if [[ ! -f "$FILE" ]]; then | ||
echo "[ERROR] File $FILE not found." | ||
exit 1 | ||
fi | ||
|
||
cp "$FILE" "$TMP_FILE" | ||
# Fix paths for Quarto rendering | ||
sed 's#/ota#/cace/_docs/ota#g' "$TMP_FILE" > "$FILE" | ||
cp "$FILE" "$TMP_FILE" | ||
|
||
# Suppress numbering and listing of headings | ||
sed '/^#/ s/$/ {.unnumbered .unlisted}/' "$TMP_FILE" > "$FILE" | ||
|
||
# cp $FILE $FILE.tmp | ||
# remove Unicode for Latex rendering | ||
# iconv -c -f utf-8 -t ascii $FILE.tmp > $FILE | ||
rm $FILE.tmp | ||
|
||
rm "$TMP_FILE" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
#!/bin/bash | ||
FILE=_docs/ota-improved_schematic.md | ||
cp $FILE $FILE.tmp | ||
# fix paths for Quarto rendering | ||
sed 's#/ota#/cace/_docs/ota#g' $FILE.tmp > $FILE | ||
cp $FILE $FILE.tmp | ||
# suppress numbering and listing of headings | ||
sed '/^#/ s/$/ {.unnumbered .unlisted}' $FILE.tmp > $FILE | ||
set -euo pipefail | ||
FILE="_docs/ota-improved_schematic.md" | ||
TMP_FILE="${FILE}.tmp" | ||
|
||
# Check if the file exists | ||
if [[ ! -f "$FILE" ]]; then | ||
echo "[ERROR] File $FILE not found." | ||
exit 1 | ||
fi | ||
|
||
cp "$FILE" "$TMP_FILE" | ||
# Fix paths for Quarto rendering | ||
sed 's#/ota#/cace/_docs/ota#g' "$TMP_FILE" > "$FILE" | ||
cp "$FILE" "$TMP_FILE" | ||
|
||
# Suppress numbering and listing of headings | ||
sed '/^#/ s/$/ {.unnumbered .unlisted}/' "$TMP_FILE" > "$FILE" | ||
|
||
# cp $FILE $FILE.tmp | ||
# remove Unicode for Latex rendering | ||
# iconv -c -f utf-8 -t ascii $FILE.tmp > $FILE | ||
rm $FILE.tmp | ||
|
||
rm "$TMP_FILE" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.