/* Copyright 2019 New Vector Ltd Copyright 2019, 2020 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import Markdown from '../Markdown'; import {makeGenericPermalink} from "../utils/permalinks/Permalinks"; import EditorModel from "./model"; import { AllHtmlEntities } from 'html-entities'; import SettingsStore from '../settings/SettingsStore'; import SdkConfig from '../SdkConfig'; import cheerio from 'cheerio'; export function mdSerialize(model: EditorModel) { return model.parts.reduce((html, part) => { switch (part.type) { case "newline": return html + "\n"; case "plain": case "command": case "pill-candidate": case "at-room-pill": return html + part.text; case "room-pill": case "user-pill": return html + `[${part.text.replace(/[[\\\]]/g, c => "\\" + c)}](${makeGenericPermalink(part.resourceId)})`; } }, ""); } export function markdownSerializeIfNeeded(md: string, {forceHTML = false} = {}, {forceTEX = false} = {}) { // copy of raw input to remove unwanted math later const orig = md; if (SettingsStore.getValue("feature_latex_maths")) { if (forceTEX) { // detect math with tex delimiters, inline: $...$, display $$...$$ // preferably use negative lookbehinds, not supported in all major browsers: // const displayPattern = "^(?\n\n\n\n`; }); md = md.replace(RegExp(inlinePattern, "gm"), function(m, p1, p2) { const p2e = AllHtmlEntities.encode(p2); return `${p1}`; }); } else { // detect math with latex delimiters, inline: \(...\), display \[...\] // conditions for display math detection \[...\]: // - pattern starts at beginning of line // - pattern ends at end of line const displayPattern = (SdkConfig.get()['latex_maths_delims'] || {})['display_pattern'] || "^\\\\\\[(.*?)\\\\\\]$"; // conditions for inline math detection \(...\): // - pattern starts at beginning of line or is not prefixed with backslash // (this allows escaping and requires that multiple consecutive // patterns are separated by at least one character) const inlinePattern = (SdkConfig.get()['latex_maths_delims'] || {})['inline_pattern'] || "(^|[^\\\\])\\\\\\((.*?)\\\\\\)"; md = md.replace(RegExp(displayPattern, "gms"), function(m, p1) { const p1e = AllHtmlEntities.encode(p1); return `