1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #!/bin/bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -e
- echo $1
- FILE=${1%.md}
- cat $1 > temp.md
- OPTS=
- if [ "${FILE}" != "./index" ]; then
- if [[ $FILE == *index ]]
- then
- DEST="../"
- else
- DEST="./"
- fi
- RETURN="<a href='$DEST'>Back to previous index</a>"
- OPTS="--css /headerleft.css -T Libreboot"
- fi
- if [ "${FILE}" != "./docs/fdl-1.3" ] && [ "${FILE}" != "./conduct" ]; then
- echo "" >> temp.md
- printf "[License](/docs/fdl-1.3.md) --\n" >> temp.md
- printf "[Template](/license.md) --\n" >> temp.md
- printf "[Authors](/contrib.md) --\n" >> temp.md
- printf "[Conduct Guidelines](/conduct.md) --\n" >> temp.md
- printf "[Management Guidelines](/management.md) --\n" >> temp.md
- printf "[Peers Community](https://peers.community/) \n" >> temp.md
- fi
- sed temp.md -i -e 's/\.md\(#[a-z\-]*\)*)/.html\1)/g'
- sed temp.md -i -e 's/\.md\(#[a-z\-]*\)*]/.html\1]/g'
- TOC=$(grep -q "^x-toc-enable: true$" temp.md && echo "--toc --toc-depth=2") || TOC=""
- SMART=$(pandoc -v | grep -q '2\.0' || echo "--smart") || SMART=""
- pandoc $TOC $SMART temp.md -s --css /global.css $OPTS \
- --template template.html --metadata return="$RETURN"> $FILE.html
- pandoc $1 > $FILE.bare.html
|