summaryrefslogtreecommitdiff
path: root/home/dots/.local/bin/convert-website
diff options
context:
space:
mode:
Diffstat (limited to 'home/dots/.local/bin/convert-website')
-rwxr-xr-xhome/dots/.local/bin/convert-website5
1 files changed, 5 insertions, 0 deletions
diff --git a/home/dots/.local/bin/convert-website b/home/dots/.local/bin/convert-website
new file mode 100755
index 0000000..2b951d7
--- /dev/null
+++ b/home/dots/.local/bin/convert-website
@@ -0,0 +1,5 @@
+#!/bin/env sh
+for file in $*
+do
+ pandoc $file --from html --to markdown_strict | NO_COLOR=true lowdown -tterm -o "$file.md"
+done