Inline KaTeX musí zůstat inline i v HTML jinak přidává mezery, kam nemá.
This commit is contained in:
parent
0f7ed0ae32
commit
05ffd321d8
1 changed files with 5 additions and 1 deletions
|
@ -243,7 +243,11 @@ class HTMLGenerator(OutputGenerator):
|
|||
"DisplayMath": True,
|
||||
"InlineMath": False
|
||||
}
|
||||
self.writeraw(self.katexClient.render(e.text, {"displayMode": formats[e.format]}))
|
||||
rawhtml = self.katexClient.render(e.text, {"displayMode": formats[e.format]})
|
||||
if (e.format == "InlineMath"):
|
||||
self.write(rawhtml)
|
||||
else:
|
||||
self.writeraw()
|
||||
|
||||
def generate_RawInline(self, e: RawInline):
|
||||
if e.format == "html":
|
||||
|
|
Loading…
Reference in a new issue