Skip to content

MikeGarde/inkwell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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