Skip to content

Instantly share code, notes, and snippets.

View johndryan's full-sized avatar

John Ryan johndryan

View GitHub Profile
#!/bin/bash
# Pandoc: convert multiple html files to markdown
# Requires pandoc (installed via homebrew)
for f in *.html ; do pandoc ${f} -f html -t markdown -s -o ${f}.md ; done