Skip to content
Snippets Groups Projects
pandoc-build.sh 618 B
Newer Older
#!/bin/bash

# Make the facilities document use Times New Roman, for NSF reasons

# Create a pandoc document, and change the font
pushd ${HUGOTMP}
echo "hello world" | pandoc -o reference.docx
unzip -q reference.docx word/theme/theme1.xml
sed -i 's/Calibri/Times New Roman/' word/theme/theme1.xml
sed -i 's/Cambria/Times New Roman/' word/theme/theme1.xml
zip -q -r --move reference.docx word
popd

pandoc --reference-doc=${HUGOTMP}/reference.docx -s content/facilities.md -o public/facilities.docx
Adam Caprez's avatar
Adam Caprez committed
pandoc --reference-doc=${HUGOTMP}/reference.docx -s static/markdown/class-guidelines.md -o public/class-guidelines.docx