blob: c027a46086ce77f0efc585d4eac99a56bf8f7fa9 (
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
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/bash
echo $1
FILE=${1%.md}
# get title block
head -n 4 $FILE.md > temp.md
# if not homepage, add a link back to the homepage
#if [ "${FILE}" != "./index" ]; then
# printf "[Go back to homepage](/index.md)\n\n" >> temp.md
#fi
# read rest of file
tail -n +5 $FILE.md >> temp.md
# add license notice where applicable
# TODO: make this less intrusive
#if [[ ${FILE} != "docs*" ]] ; then
# cat license.md >> temp.md
#fi
# add unity text in
sed temp.md -i -e "/%%UNITYLETTER%%/r unity.md" -e "s/%%UNITYLETTER%%//"
# 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 > $FILE.html
|