From b6d9447337cb3e1bd10d0053a6d24259df149d6c Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Tue, 7 Nov 2017 18:25:45 +0100 Subject: [PATCH] Use cmark instead of dicount for compiling Markdown --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 51250d9..2bd708c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -index: pages/index.md styles/index.css +index: mkdir -p build cp styles/index.css build/index.css cp scripts/konami-code.js build/k.js - discount-theme pages/index.md \ - -o build/index.html \ - -t templates/index.theme + cat templates/index-header.theme > build/index.html + cmark --smart < pages/index.md >> build/index.html + cat templates/index-footer.theme >> build/index.html