bin/mutt-html2txt@15f44658968e
bin/mutt-html2txt
Thu, 07 Feb 2019 15:06:56 -0600
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Thu, 07 Feb 2019 15:06:56 -0600
- changeset 730
- 15f44658968e
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
Add triggers for gundo and tagbar
#!/bin/sh
set -eu
LINKS="links -html-tables 0 -html-image-names 0 -html-margin 0"
FILE=${1:--}
[ "$FILE" != '-' ] &&
exec $LINKS -dump $FILE
TMPHTML="$(mktemp).html"
cat > $TMPHTML
$LINKS -dump $TMPHTML
rm -f $TMPHTML