livebook/assets/js/cell/markdown.js
Jonatan Kłosko 2ff327e742
Implement cells bin (#414)
* Implement cells bin

* Temporarily keep cells source

* Send complete bin entries from session to clients when a cell gets removed

* Polish styles

* Hydrate bin entries on section deletion as well
2021-06-30 17:48:27 +02:00

104 lines
2.8 KiB
JavaScript

import marked from "marked";
import morphdom from "morphdom";
import DOMPurify from "dompurify";
import katex from "katex";
import { highlight } from "./live_editor/monaco";
// Reuse Monaco highlighter for Markdown code blocks
marked.setOptions({
highlight: (code, lang, callback) => {
highlight(code, lang)
.then((html) => callback(null, html))
.catch((error) => callback(error, null));
},
});
// Modify external links, so that they open in a new tab.
// See https://github.com/cure53/DOMPurify/tree/main/demos#hook-to-open-all-links-in-a-new-window-link
DOMPurify.addHook("afterSanitizeAttributes", (node) => {
if (
node.tagName.toLowerCase() === "a" &&
node.host !== window.location.host
) {
node.setAttribute("target", "_blank");
node.setAttribute("rel", "noreferrer noopener");
}
});
/**
* Renders markdown content in the given container.
*/
class Markdown {
constructor(container, content, { baseUrl = null, emptyText = "" } = {}) {
this.container = container;
this.content = content;
this.baseUrl = baseUrl;
this.emptyText = emptyText;
this.__render();
}
setContent(content) {
this.content = content;
this.__render();
}
__render() {
this.__getHtml().then((html) => {
// Wrap the HTML in another element, so that we
// can use morphdom's childrenOnly option.
const wrappedHtml = `<div>${html}</div>`;
morphdom(this.container, wrappedHtml, { childrenOnly: true });
});
}
__getHtml() {
return new Promise((resolve, reject) => {
// Marked requires a trailing slash in the base URL
const opts = { baseUrl: this.baseUrl + "/" };
// Render math formulas using KaTeX.
// The resulting <span> tags will pass through
// marked.js and sanitization unchanged.
//
// We render math before anything else, because passing
// TeX through markdown renderer may have undesired
// effects like rendering \\ as \.
const contentWithRenderedMath = this.__renderMathInString(this.content);
marked(contentWithRenderedMath, opts, (error, html) => {
const sanitizedHtml = DOMPurify.sanitize(html);
if (sanitizedHtml) {
resolve(sanitizedHtml);
} else {
resolve(`
<div class="text-gray-300">
${this.emptyText}
</div>
`);
}
});
});
}
// Replaces TeX formulas in string with rendered HTML using KaTeX.
__renderMathInString(string) {
return string.replace(
/(\${1,2})([\s\S]*?)\1/g,
(match, delimiter, math) => {
const displayMode = delimiter === "$$";
return katex.renderToString(math.trim(), {
displayMode,
throwOnError: false,
errorColor: "inherit",
});
}
);
}
}
export default Markdown;