From 0b6d6755ace334f6ff0ef9dba4f1f7163640a7d7 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Thu, 29 Apr 2021 18:18:31 +0200 Subject: Disable Pandoc citations --- scripts/build_content.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/build_content.sh b/scripts/build_content.sh index 3e4d512..3dea44f 100755 --- a/scripts/build_content.sh +++ b/scripts/build_content.sh @@ -27,7 +27,7 @@ get_filename_out() { get_metadata() { pandoc "$1" \ - -f markdown \ + -f markdown-citations \ -t plain \ --metadata content_dir="$CONTENT_DIR" \ --metadata file_in="$1" \ @@ -40,7 +40,7 @@ get_metadata() { get_content() { pandoc "$1" \ - -f markdown \ + -f markdown-citations \ -t markdown \ --metadata content_dir="$CONTENT_DIR" \ --metadata file_in="$1" \ @@ -120,7 +120,7 @@ handle () { echo -e "\033[0;90m[COMPILE ]\033[0m Creating feed" pandoc "$1" \ - -f markdown \ + -f markdown-citations \ -t html5 \ --no-highlight \ --template "${TEMPLATES_DIR}feed.xml" \ @@ -136,7 +136,7 @@ handle () { echo -e "\033[0;90m[COMPILE ]\033[0m Creating page" pandoc "$1" \ - -f markdown \ + -f markdown-citations \ -t html5 \ --no-highlight \ --template "${TEMPLATES_DIR}base.html" \ @@ -149,7 +149,7 @@ handle () { $FILTERS # echo "$(pandoc "$1" \ - # -f markdown \ + # -f markdown-citations \ # -t plain \ # --no-highlight \ # --template scripts/metadata_tpl.json \ -- cgit v1.2.3-54-g00ecf