Created
May 16, 2019 02:49
-
-
Save nathanqthai/811b28a43e2bcb0d562a07ea852609c3 to your computer and use it in GitHub Desktop.
CLI preview for Markdown editing
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
# 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