Math in Zettel titles is not rendered as math in Zettel links
I often have mathematical expressions in Zettel titles, e.g.
# Proof that $1 \neq 0$
…
I thought that links to such a Zettel got rendered correctly in browser in an earlier release but this is not the case any more. Probably has something to do with a change in the used math engine? Can it be made to work again?
To clarify further: Links to the above example Zettel are rendered as
Proof that 1 \neq 0
but should be rendered as
Proof that 1 ≠ 0
Works for me?

(Tested in neuron's ./doc zettelkasten)
Oh, you mean links. Right, neuron generates the following HTML
<a href=".">Proof that 1 \neq 0</a>
The $ is missing. plainify is discarding them?
Yup, the fix could go here: https://github.com/srid/neuron/blob/468737141a92faacb1e9a2f33081ff073251852d/neuron/src/lib/Text/Pandoc/Util.hs#L82
Though, this patch has no effect - so I've no idea.
diff --git a/neuron/src/lib/Text/Pandoc/Util.hs b/neuron/src/lib/Text/Pandoc/Util.hs
index 6b853d67..bf187dfa 100644
--- a/neuron/src/lib/Text/Pandoc/Util.hs
+++ b/neuron/src/lib/Text/Pandoc/Util.hs
@@ -79,7 +79,7 @@ plainify = W.query $ \case
B.SoftBreak -> " "
B.LineBreak -> " "
B.RawInline _fmt s -> s
- B.Math _mathTyp s -> s
+ B.Math _mathTyp s -> "$" <> s <> "$"
-- Ignore the rest of AST nodes, as they are recursively defined in terms of
-- `Inline` which `W.query` will traverse again.
_ -> ""
Thank you for looking into it! I might create a PR some time.
This is probably related: Parenthesis in title is not rendered properly as well. Sometimes I add wiki-style links in title, like this:

That is rendered as this in the link:

Could anyone port this issue, if applicable, to Emanote? See https://neuron.zettel.page/next
This is probably related: Parenthesis in title is not rendered properly as well.
@onnyyonn Probably related to #525