From f0fa2102018c98079efafcce9beac4092e9a4471 Mon Sep 17 00:00:00 2001 From: neodarz <neodarz@neodarz.net> Date: Fri, 5 Jan 2018 20:19:21 +0100 Subject: add pandoc patch switch script by version --- README.md | 2 ++ pandoc_version_switch.sh | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100755 pandoc_version_switch.sh diff --git a/README.md b/README.md index 3a184810..88c72a66 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ The theme of this blog is largely based on that of [mort.ninja](http://mort.ninj Self-hosted Google Web Fonts are downloaded from [google-webfonts-helper](https://google-webfonts-helper.herokuapp.com/fonts), courtesy of [Mario Ranftl](http://ranf.tl/2014/12/23/self-hosting-google-web-fonts/). +Warning: If the link generation didin't work use the script : `pandoc_version_switch.sh`. Don't forget to adapt the pandoc version ! + ## Markdown features of `pyblog` `pyblog` uses Pandoc for Markdown processing. The HTML template is diff --git a/pandoc_version_switch.sh b/pandoc_version_switch.sh new file mode 100755 index 00000000..165bdb32 --- /dev/null +++ b/pandoc_version_switch.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +if $(pandoc -v | grep --quiet "pandoc 2.0.6"); then + sed -i "s/'<p>– generate/'-– generate/g" pyblog +elif $(pandoc -v | grep --quiet "pandoc 1.19.2.1"); then + sed -i "s/'-- generate/'<p>- generate/g" pyblog +else + echo $(pandoc -v | grep --quiet "pandoc 2.0.6") +fi + -- cgit v1.2.1