#!/bin/env sh for file in $* do pandoc $file --from html --to markdown_strict | NO_COLOR=true lowdown -tterm -o "$file.md" done