From 336f854501855c032578d6f1fe7d902f835879f2 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 22 Mar 2023 17:07:42 -0500 Subject: [PATCH] Disable pandoc smart formatting for markdown --- index.html | 14 +++++++------- md2html.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index d8d9266..9e213d6 100755 --- a/index.html +++ b/index.html @@ -6,8 +6,8 @@ -

askiiart’s site

-

I’m a hobby programmer, and co-founder and vice president of the TCCD CompSci and Coding Club. This is my site.

+

askiiart's site

+

I'm a hobby programmer, and co-founder and vice president of the TCCD CompSci and Coding Club. This is my site.

diff --git a/md2html.py b/md2html.py index f8e5093..4701b8a 100755 --- a/md2html.py +++ b/md2html.py @@ -10,4 +10,4 @@ for item in md_files: md_files_no_ext.append(item[:-3]) for item in md_files_no_ext: - os.system(f'pandoc --data-dir /big-stuff/files/websites/personal-site/html --template template.html -t html -o {item}.html {item}.md') + os.system(f'pandoc -f markdown-smart --data-dir /big-stuff/files/websites/personal-site/html --template template.html -t html -o {item}.html {item}.md')