Last active
October 16, 2019 13:11
-
-
Save ahoendgen/d98014257d2fafdd8a9d39a956ba3801 to your computer and use it in GitHub Desktop.
Convert markdown files easily into html with the help of pandoc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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