35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
&root = .
|
|
|
|
!pandoc = | &(root)/templates/footer.html \
|
|
|> ^ pandoc %f^ \
|
|
pandoc --from markdown --to html \
|
|
--template=&(root)/templates/pandoc.html \
|
|
--css &(root)/css/style.css \
|
|
--include-in-header=&(root)/templates/header.html \
|
|
--include-before-body=&(root)/templates/nav.html \
|
|
--include-after-body=&(root)/templates/footer.html \
|
|
%f | sed 's|%%webRoot%%|&(root)|g' > %o \
|
|
|> %B.html
|
|
|
|
!project = | &(root)/templates/footer.html \
|
|
|> ^ pandoc %f^ \
|
|
pandoc --from markdown --to html \
|
|
--template=&(root)/templates/project.html \
|
|
--css &(root)/css/style.css \
|
|
--include-in-header=&(root)/templates/header.html \
|
|
--include-before-body=&(root)/templates/nav.html \
|
|
--include-after-body=&(root)/templates/footer.html \
|
|
%f | sed 's|%%webRoot%%|&(root)|g' > %o \
|
|
|> %B.html
|
|
|
|
!article = | &(root)/templates/footer.html \
|
|
|> ^ pandoc %f^ \
|
|
pandoc --from markdown --to html \
|
|
--template=&(root)/templates/article.html \
|
|
--css &(root)/css/style.css \
|
|
--include-in-header=&(root)/templates/header.html \
|
|
--include-before-body=&(root)/templates/nav.html \
|
|
--include-after-body=&(root)/templates/footer.html \
|
|
%f | sed 's|%%webRoot%%|&(root)|g' > %o \
|
|
|> %B.html
|