nuke: add lowdown as alternative markdown viewer (#524)

See https://kristaps.bsd.lv/lowdown/
This commit is contained in:
lvgx 2020-04-17 04:41:08 +02:00 committed by GitHub
parent ddaddcaf21
commit 7cc46510e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -47,7 +47,7 @@
# log: vi
# torrent: rtorrent, transmission-show
# odt|ods|odp|sxw: odt2txt
# md: glow (https://github.com/charmbracelet/glow)
# md: glow (https://github.com/charmbracelet/glow), lowdown (https://kristaps.bsd.lv/lowdown)
# htm|html|xhtml: w3m, lynx, elinks
# json: jq, python (json.tool module)
# Multimedia by mime:
@ -209,6 +209,9 @@ handle_extension() {
if which glow >/dev/null 2>&1; then
glow -sdark "${FPATH}" | less -R
exit 0
elif which lowdown >/dev/null 2>&1; then
lowdown -Tterm "${FPATH}" | less -R
exit 0
fi
;;