diff options
author | EuAndreh <eu@euandre.org> | 2021-06-11 23:37:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-11 23:37:59 -0300 |
commit | ab3ad8fca4ec645854a54a50de4ee21c8fd72978 (patch) | |
tree | d8910a95004c59c11a7f557379b0eb35284ea5ac /aux/workflow/commonmark.sh | |
parent | servers/nixvps/configuration.nix: Use subfolders of the same domain over subd... (diff) | |
download | toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.gz toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.xz |
aux/: Update files
Diffstat (limited to 'aux/workflow/commonmark.sh')
-rwxr-xr-x | aux/workflow/commonmark.sh | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/aux/workflow/commonmark.sh b/aux/workflow/commonmark.sh index e9609c2..6016f51 100755 --- a/aux/workflow/commonmark.sh +++ b/aux/workflow/commonmark.sh @@ -5,13 +5,16 @@ mkdir -p public PROJECT_UC="$1" F="$2" +OUT="${3:-${F%.*}.html}" -pandoc --toc \ - --highlight-style pygments \ - --toc-depth=2 \ - -s \ - --metadata title="$PROJECT_UC - ${F%.*}" \ - --metadata lang=en \ - -r commonmark \ - -w html \ - < "$F" > "public/${F%.*}.html" +pandoc \ + --toc \ + --highlight-style pygments \ + --toc-depth=2 \ + -s \ + --metadata title="$PROJECT_UC - ${F%.*}" \ + --metadata lang=en \ + -r commonmark \ + -w html \ + -H aux/workflow/favicon.html \ + < "$F" > "public/$OUT" |