From fc00ad5bffcd5a1b89a4c1cb19b12d77238cc4c2 Mon Sep 17 00:00:00 2001
From: Blake Allen <blakesnake100@gmail.com>
Date: Fri, 22 Oct 2021 21:04:09 +0000
Subject: [PATCH] fix for notes with spaces not linking properly
---
layouts/_default/single.html | 11 ++++-------
1 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index c30cd4f..0025cd3 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,3 +1,6 @@
+<!-- {{replaceRE `(http.+) (\w+)` "$1-$2" .Content}} -->
+{{$content := replaceRE `a href="\.\.\/(.+%20.+)+"` `$1` .Content}}
+{{$content = replace $content "%20" "-"}}
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
@@ -13,13 +16,7 @@
{{partial "darkmode.html" .}}
</header>
<article>
- {{if $.Site.Data.config.enableToc}}
- <aside class="mainTOC">
- <h3>Table of Contents</h3>
- {{ .TableOfContents }}
- </aside>
- {{end}}
- {{- .Content -}}
+ {{ $content | safeHTML }}
</article>
{{partial "footer.html" .}}
</div>
--
Gitblit v1.10.0