Skip to content

Instantly share code, notes, and snippets.

@ahoendgen
Last active October 16, 2019 13:11
Show Gist options
  • Save ahoendgen/d98014257d2fafdd8a9d39a956ba3801 to your computer and use it in GitHub Desktop.
Save ahoendgen/d98014257d2fafdd8a9d39a956ba3801 to your computer and use it in GitHub Desktop.
Convert markdown files easily into html with the help of pandoc
#!/usr/bin/env bash
target=${2:-"dump.html"}
pandoc -f markdown "${@:1}" > "${target}" --filter pandoc-plantuml
exit $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment