Notes_to_myself
Some notes to myself when it comes to updating committing to github.io, but also converting
Git commit to publish website
Of course, go the public folder of your newly hugo-built website. Then:
git add .
git commit -m "Build website again"
git push origin master
VoilĂ !
From Latex to Pandoc to Hugo/Academic
Bib file with .tex file
---
title : "Title"
editable: false
date : 2018-09-09T00:00:00
# lastmod : 2018-09-09T00:00:00
toc : true # Show table of contents? true/false
#needed bit
bibliography : [./myreferences.bib]
csl: [./chicago-author-date.csl]
reference-section-title: References
link-citations: true
---
Convert to a draft .md
pandoc -f latex yourlatex.tex -t markdown -o draftfile.md
pandoc --filter pandoc-citeproc draftfile.md -t markdown_mmd -o draftfile_withBellsAndWhistles.md
Add it to the content of your target .md file
VoilĂ .