mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Math Symbols #356
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @forgabs on GitHub (Mar 23, 2020).
Hi! Thanks for this great plugin! Math symbols as defined in Markdig do not work in my case, is it possible to use them?
@yang-er commented on GitHub (Mar 26, 2020):
It cannot translate
$1$into a math inline. However,${1}$is ok.It refers to
Markdig.Extensions.Mathematics.MathInlineParser, which commentsTo solve this problem, I have copied the parser to my project and remove this restriction.
@forgabs commented on GitHub (Mar 26, 2020):
Thanks! I tried to use
{A_1}and would axpect the 1 as subscript, but this doesnt work.@yang-er commented on GitHub (Mar 26, 2020):
Did you forget applying
UseMathematics()toMarkdownPipelineBuilder?@forgabs commented on GitHub (Mar 26, 2020):
Well I have to admit that I did not install markding. I installed the MarkDownViewer++ via the extension control panel in Notepad++ and expected that markding commands are ready to use. Do I have to make additional installations in order to get the Latex math interpreter running.
@xoofx commented on GitHub (Mar 26, 2020):
You should ask this directly to MarkDownViewer folks, as Markdig is not responsible for rendering Latex. The math extension in Markdig is only making sure that it will output blocks that can be recognized by a Latex/Math renderer.