diff options
| author | Franklin Wei <me@franklinwei.com> | 2026-03-30 14:54:18 -0400 |
|---|---|---|
| committer | Franklin Wei <me@franklinwei.com> | 2026-03-30 14:54:18 -0400 |
| commit | b84c6ff213819a053e2ac260124e5d0cd93833d0 (patch) | |
| tree | 1eaca5f22d92f2087e0f29bfb7345feecb209499 /build.sh | |
| parent | ebe7b0f333a259da02a14e0f428fe3314d782762 (diff) | |
| download | blog-master.zip blog-master.tar.gz blog-master.tar.bz2 blog-master.tar.xz | |
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,9 +7,9 @@ cd posts for f in *.md do - pandoc --email-obfuscation=javascript --mathjax -s -t html --css=/style.css -B ../header.inc -A ../footer.inc --metadata pagetitle="FWEI.TK | ""$(../extract_field.sh ../index.csv $f 2)" -o ../blog-staging/${f%.md}.html $f + pandoc --email-obfuscation=javascript --mathjax -s -t html --css=/style.css -B ../header.inc -A ../footer.inc --metadata pagetitle="Franklin Wei | ""$(../extract_field.sh ../index.csv $f 2)" -o ../blog-staging/${f%.md}.html $f done cd - -cp files/* blog-staging/ +cp -r files/* blog-staging/ |