summaryrefslogtreecommitdiff
path: root/home/dots/.local/bin/convert-website
blob: 2b951d7c76ea1dab0b87b911e0946650e7cab4ec (plain)
1
2
3
4
5
#!/bin/env sh
for file in $*
do 
	pandoc $file --from html --to markdown_strict | NO_COLOR=true lowdown -tterm -o "$file.md"
done