/* eslint no-console:0 */ /* global katex */ const splitAtDelimiters = require("./splitAtDelimiters"); const splitWithDelimiters = function(text, delimiters) { let data = [{type: "text", data: text}]; for (let i = 0; i < delimiters.length; i++) { const delimiter = delimiters[i]; data = splitAtDelimiters( data, delimiter.left, delimiter.right, delimiter.display || false); } return data; }; /* Note: optionsCopy is mutated by this method. If it is ever exposed in the * API, we should copy it before mutating. */ const renderMathInText = function(text, optionsCopy) { const data = splitWithDelimiters(text, optionsCopy.delimiters); const fragment = document.createDocumentFragment(); for (let i = 0; i < data.length; i++) { if (data[i].type === "text") { fragment.appendChild(document.createTextNode(data[i].data)); } else { const span = document.createElement("span"); const math = data[i].data; // Override any display mode defined in the settings with that // defined by the text itself optionsCopy.displayMode = data[i].display; try { katex.render(math, span, optionsCopy); } catch (e) { if (!(e instanceof katex.ParseError)) { throw e; } console.error( "KaTeX auto-render: Failed to parse `" + data[i].data + "` with ", e ); fragment.appendChild(document.createTextNode(data[i].rawData)); continue; } fragment.appendChild(span); } } return fragment; }; const renderElem = function(elem, optionsCopy) { for (let i = 0; i < elem.childNodes.length; i++) { const childNode = elem.childNodes[i]; if (childNode.nodeType === 3) { // Text node const frag = renderMathInText(childNode.textContent, optionsCopy); i += frag.childNodes.length - 1; elem.replaceChild(frag, childNode); } else if (childNode.nodeType === 1) { // Element node const shouldRender = optionsCopy.ignoredTags.indexOf( childNode.nodeName.toLowerCase()) === -1; if (shouldRender) { renderElem(childNode, optionsCopy); } } // Otherwise, it's something else, and ignore it. } }; const defaultAutoRenderOptions = { delimiters: [ {left: "$$", right: "$$", display: true}, {left: "\\[", right: "\\]", display: true}, {left: "\\(", right: "\\)", display: false}, // LaTeX uses this, but it ruins the display of normal `$` in text: // {left: "$", right: "$", display: false}, ], ignoredTags: [ "script", "noscript", "style", "textarea", "pre", "code", ], }; const renderMathInElement = function(elem, options) { if (!elem) { throw new Error("No element provided to render"); } const optionsCopy = Object.assign({}, defaultAutoRenderOptions, options); renderElem(elem, optionsCopy); }; module.exports = renderMathInElement;