Skip to content

Latest commit

 

History

History
executable file
·
50 lines (36 loc) · 1.06 KB

README.md

File metadata and controls

executable file
·
50 lines (36 loc) · 1.06 KB

inkwell

Retain Bash Color Output for use in MD or HTML files.

Install

Check for the latest release and download.

curl -L https://github.com/MikeGarde/inkwell/releases/download/latest/inkwell > /usr/local/bin/inkwell
chmod +x /usr/local/bin/inkwell

Examples

ls -la --color=always | inkwell

With output to file

COMMAND="ls -la --color"
$COMMAND | inkwell --title $COMMAND > examples/ls-wls.html

Develop / Build

# First time setup
python3 -m venv .venv
source .venv/bin/activate
pip install pipreqs pyinstaller
pip install -r src/requirements.txt
# And make
task make

Release

Version bumping is done using [patch, minor, major] as arguments to the release task.

task release -- minor