mirror of https://github.com/tildeclub/site.git
8 lines
161 B
Bash
8 lines
161 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for page in source/*.md; do
|
||
|
pagename=$(basename $page ".md")
|
||
|
pandoc --template pandoc-template.html -o "$pagename.html" "source/$pagename.md"
|
||
|
done
|
||
|
|