blob: 6de1566241c40a33e045f739a275a7b1b3cb2ccd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
echo $1
FILE=${1%.md}
# if not homepage, add a link back to the homepage
if [ "${FILE}" != "./index" ]; then
RETURN="<p><a href='/index.html'>Go back to homepage</a></p>"
fi
cat $1 > temp.md
echo "[License](license.md)" >> temp.md
# change out .md -> .html
sed temp.md -i -e 's/\.md\(#[a-z\-]*\)*)/.html\1)/g'
# work around issue #2872
TOC=$(grep -q "^x-toc-enable: true$" temp.md && echo "--toc")
# work around heterogenous pandoc versions
SMART=$(pandoc -v | grep -q '2\.0' || echo "--smart")
# chuck through pandoc
pandoc $SMART temp.md -s --css /global.css --section-divs -T Libreboot $TOC \
--template=template.html --metadata "return=$RETURN" > $FILE.html
|