Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 912 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 912 Bytes

Blog

This repository contains the source for my blog site at https://stephankoe.github.io/blog. This blog is built with Hugo and the theme Stack.

Serve locally

Hugo allows to easily serve blog sites locally with the hugo serve command. However, some pages make use of Pandoc-style citation syntax that Hugo's goldmark Markdown parser currently doesn't support. Therefore, the markdown preprocessor toolkit is needed to parse Pandoc-style citations with HTML. So, to serve this blog locally, run the following commands from this repository's root directory:

find content/post -type f -iname '*.md' -exec preprocess-citations -i --bibliography=assets/bibliography.json {} \;
hugo serve -D