Disable pandoc smart formatting for markdown

This commit is contained in:
askiiart 2023-03-22 17:07:42 -05:00 committed by askiiart
parent fdffac250f
commit 336f854501
2 changed files with 8 additions and 8 deletions

View file

@ -6,8 +6,8 @@
<link href="style.css" type="text/css" rel="stylesheet" /> <link href="style.css" type="text/css" rel="stylesheet" />
</head> </head>
<body> <body>
<h1 id="askiiarts-site">askiiarts site</h1> <h1 id="askiiarts-site">askiiart's site</h1>
<p>Im a hobby programmer, and co-founder and vice president of the TCCD CompSci and Coding Club. This is my site.</p> <p>I'm a hobby programmer, and co-founder and vice president of the TCCD CompSci and Coding Club. This is my site.</p>
<h2 id="personal-links">Personal links:</h2> <h2 id="personal-links">Personal links:</h2>
<ul> <ul>
<li><a href="https://git.askiiart.net/askiiart">Gitea</a> (my main git thing)</li> <li><a href="https://git.askiiart.net/askiiart">Gitea</a> (my main git thing)</li>
@ -23,16 +23,16 @@
<li><a href="https://git.askiiart.net/">Gitea</a></li> <li><a href="https://git.askiiart.net/">Gitea</a></li>
<li><a href="/archives/">The archives</a> <li><a href="/archives/">The archives</a>
<ul> <ul>
<li>If theres something I should add to the archives, contact me on Discord.</li> <li>If there's something I should add to the archives, contact me on Discord.</li>
<li>Additionally, theres <a href="/archives/iso-and-stuff/Windows/">this section</a> of the archives with nearly every piece Windows installation media there is - even server, IoT, and embedded versions. Get your Windows ISOs here!</li> <li>Additionally, there's <a href="/archives/iso-and-stuff/Windows/">this section</a> of the archives with nearly every piece Windows installation media there is - even server, IoT, and embedded versions. Get your Windows ISOs here!</li>
</ul></li> </ul></li>
<li><a href="https://askiiart.net/repo/">My yum repo</a> <li><a href="https://askiiart.net/repo/">My yum repo</a>
<ul> <ul>
<li>A yum repo for stuff I add. Ill probably make it into an NVIDIA 470 driver repo because <a href="https://www.youtube.com/watch?v=IVpOyKCNZYw">NVIDIA is a pain</a>.</li> <li>A yum repo for stuff I add. I'll probably make it into an NVIDIA 470 driver repo because <a href="https://www.youtube.com/watch?v=IVpOyKCNZYw">NVIDIA is a pain</a>.</li>
</ul></li> </ul></li>
<li><a href="https://element.askiiart.net/">Element</a> <li><a href="https://element.askiiart.net/">Element</a>
<ul> <ul>
<li>Its element, the Matrix client</li> <li>It's element, the Matrix client</li>
</ul></li> </ul></li>
<li><a href="https://libreddit.askiiart.net/">LibReddit</a> <li><a href="https://libreddit.askiiart.net/">LibReddit</a>
<ul> <ul>
@ -67,7 +67,7 @@
</ul></li> </ul></li>
<li><a href="https://bestmotherfucking.website/">Best Motherf**king Website</a> <li><a href="https://bestmotherfucking.website/">Best Motherf**king Website</a>
<ul> <ul>
<li>A fantastic looking, satirical website, mocking things including but not limited to: “5MB background video[s] of hipsters poking at their iPhones”</li> <li>A fantastic looking, satirical website, mocking things including but not limited to: "5MB background video[s] of hipsters poking at their iPhones"</li>
</ul></li> </ul></li>
</ul> </ul>
</body> </body>

View file

@ -10,4 +10,4 @@ for item in md_files:
md_files_no_ext.append(item[:-3]) md_files_no_ext.append(item[:-3])
for item in md_files_no_ext: 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')