mirror of
https://github.com/tildeclub/site.git
synced 2026-06-15 16:50:19 +00:00
8 lines
161 B
Bash
Executable File
8 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for page in source/*.md; do
|
|
pagename=$(basename $page ".md")
|
|
pandoc --template pandoc-template.html -o "$pagename.html" "source/$pagename.md"
|
|
done
|
|
|