The shell auto-image now runs code and turns the output into an image that is embedded into the document The prompt is configurable in /bin/prompt The first draft is done up until the references section
7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
BLUE='\033[34m'
|
|
NC='\033[0m' # No Color
|
|
|
|
cat - | sed "s/^\\\$/$(echo -e "$BLUE")$(echo -e "$NC")/"
|
|
#cat - | sed "s/^\\\$/$(echo -e "$BLUE")\$$(echo -e "$NC")/"
|