mirror of https://github.com/vector-im/riot-web
cosmetic changes (lint)
parent
1b689bb4e1
commit
aded3c9de2
|
@ -416,24 +416,21 @@ export function bodyToHtml(content: IContent, highlights: string[], opts: IOpts
|
|||
if (SdkConfig.get()['latex_maths']) {
|
||||
const mathDelimiters = [
|
||||
{ pattern: "<div data-mx-maths=\"([^\"]*)\">(.|\\s)*?</div>", display: true },
|
||||
{ pattern: "<span data-mx-maths=\"([^\"]*)\">(.|\\s)*?</span>", display: false }
|
||||
{ pattern: "<span data-mx-maths=\"([^\"]*)\">(.|\\s)*?</span>", display: false },
|
||||
];
|
||||
|
||||
mathDelimiters.forEach(function(d) {
|
||||
var reg = RegExp(d.pattern, "gm");
|
||||
|
||||
safeBody = safeBody.replace(reg, function(match, p1) {
|
||||
safeBody = safeBody.replace(RegExp(d.pattern, "gm"), function(m, p1) {
|
||||
return katex.renderToString(
|
||||
AllHtmlEntities.decode(p1),
|
||||
{
|
||||
throwOnError: false,
|
||||
displayMode: d.display,
|
||||
output: "mathml"
|
||||
output: "mathml",
|
||||
})
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
} finally {
|
||||
delete sanitizeParams.textFilter;
|
||||
|
|
|
@ -40,7 +40,7 @@ export function mdSerialize(model: EditorModel) {
|
|||
}
|
||||
|
||||
export function htmlSerializeIfNeeded(model: EditorModel, {forceHTML = false} = {}) {
|
||||
var md = mdSerialize(model);
|
||||
let md = mdSerialize(model);
|
||||
|
||||
if (SdkConfig.get()['latex_maths']) {
|
||||
const displayPattern = (SdkConfig.get()['latex_maths_delims'] || {})['display_pattern'] ||
|
||||
|
|
Loading…
Reference in New Issue