Skip to content

Instantly share code, notes, and snippets.

@nathanqthai
Created May 16, 2019 02:49
Show Gist options
  • Save nathanqthai/811b28a43e2bcb0d562a07ea852609c3 to your computer and use it in GitHub Desktop.
Save nathanqthai/811b28a43e2bcb0d562a07ea852609c3 to your computer and use it in GitHub Desktop.
CLI preview for Markdown editing
# sudo apt install ruby inotify-tools
# gem install mdless
# https://github.com/ttscoff/mdless
# refreshing preview of markdown files
mdlive() {
while true; do
inotifywait -q -e close_write $1;
clear;
mdless $1 | cat;
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment