parse html for latex rendering inside settings block

pull/21833/head
Aleks Kissinger 2020-11-26 17:45:11 +00:00
parent 7013483dad
commit 494ae3e421
1 changed files with 2 additions and 2 deletions

View File

@ -418,10 +418,10 @@ export function bodyToHtml(content: IContent, highlights: string[], opts: IOpts
if (isHtmlMessage) {
isDisplayedWithHtml = true;
safeBody = sanitizeHtml(formattedBody, sanitizeParams);
const phtml = cheerio.load(safeBody,
{ _useHtmlParser2: true, decodeEntities: false })
if (SettingsStore.getValue("feature_latex_maths")) {
const phtml = cheerio.load(safeBody,
{ _useHtmlParser2: true, decodeEntities: false })
phtml('div, span[data-mx-maths!=""]').replaceWith(function(i, e) {
return katex.renderToString(
AllHtmlEntities.decode(phtml(e).attr('data-mx-maths')),