Blame SOURCES/md2html.sh

921f83
#!/bin/bash
921f83
921f83
set -euxo pipefail
921f83
921f83
for file in "$@"; do
921f83
	pandoc -f markdown_github "${file}" -t asciidoc -o "${file%.md}.tmp.adoc"
921f83
	touch -r "${file}" "${file%.md}.tmp.adoc"
921f83
	TZ=UTC asciidoc -o "${file%.md}.html" -a footer-style=none -a toc2 -a source-highlighter=highlight "${file%.md}.tmp.adoc"
921f83
	rm "${file%.md}.tmp.adoc"
921f83
done