diff --git a/assets/js/popover.js b/assets/js/popover.js
index c7b11650..3d7a30c0 100644
--- a/assets/js/popover.js
+++ b/assets/js/popover.js
@@ -47,8 +47,6 @@ function initPopover(baseURL, useContextualBacklinks, renderLatex) {
delimiters: [
{ left: '$$', right: '$$', display: false },
{ left: '$', right: '$', display: false },
- { left: '\\(', right: '\\)', display: false },
- { left: '\\[', right: '\\]', display: false }
],
throwOnError: false
})
diff --git a/content/_index.md b/content/_index.md
index 27a20364..5b43f8ea 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -4,7 +4,7 @@ title: 🪴 Quartz 3.3
Host your second brain and [digital garden](https://jzhao.xyz/posts/networked-thought) for free. Quartz features
-1. Extremely fast natural-language [[notes/search|search]]
+1. Extremely fast natural-language [[notes/search]]
2. Customizable and hackable design based on [Hugo](https://gohugo.io/)
3. Automatically generated backlinks, link previews, and local graph
4. Built-in [[notes/CJK + Latex Support (测试) | CJK + Latex Support]] and [[notes/callouts | Admonition-style callouts]]
diff --git a/content/notes/CJK + Latex Support (测试).md b/content/notes/CJK + Latex Support (测试).md
index d6e4ae96..c2d6f84c 100644
--- a/content/notes/CJK + Latex Support (测试).md
+++ b/content/notes/CJK + Latex Support (测试).md
@@ -37,4 +37,4 @@ a & b & c
$$
## RTL
-More information on configuring RTL languages like Arabic in the [config](notes/config.md) page.
+More information on configuring RTL languages like Arabic in the [config](notes/config.md) page.
\ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 076e4845..59b228ab 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -160,6 +160,9 @@
{left: '$$', right: '$$', display: true},
{left: '$', right: '$', display: false},
],
+ macros: {
+ '’': "'"
+ },
throwOnError : false
});
{{end}}
diff --git a/layouts/partials/katex.html b/layouts/partials/katex.html
index 756ef779..df53045b 100644
--- a/layouts/partials/katex.html
+++ b/layouts/partials/katex.html
@@ -2,4 +2,5 @@
+
{{end}}
diff --git a/layouts/partials/textprocessing.html b/layouts/partials/textprocessing.html
index 7891ea2f..6776fa5b 100644
--- a/layouts/partials/textprocessing.html
+++ b/layouts/partials/textprocessing.html
@@ -3,9 +3,9 @@
{{ $page := .Page }}
{{/* Escape slashes for Latex to fix line breaks */}}
-{{$latex := findRE "\\$\\$([^\\$]+)\\$\\$" $content}}
+{{$latex := findRE "(?:\\${2}([^\\$]+)\\${2})|(?:\\$([^\\$]*)\\$)" $content}}
{{range $latex}}
- {{$fixed := replaceRE "\\\\(?: +|\\n)" "\\\\" .}}
+ {{$fixed := replaceRE "\\\\(?: +|\\n)" "\\\\ " .}}
{{$content = replace $content . $fixed}}
{{end}}
@@ -40,14 +40,14 @@
{{$reference := split $path "#"}}
{{$title := index $reference 0}}
-
- {{$title := index (last 1 (split $title "/")) 0}}
{{$block := default "" (index $reference 1)}}
{{$block = strings.TrimRight "/" (cond (eq $block "") $block (printf "#%s" $block)) | urlize | lower}}
{{$href := strings.TrimRight "/" ($page.GetPage $title).RelPermalink}}
{{$display := default $title (index $split 1)}}
+
+ {{$display := index (last 1 (split $display "/")) 0}}
{{if not $href}}
{{$link := printf "%s" $display}}
{{$content = replace $content . $link}}