import marked from "marked"; import morphdom from "morphdom"; import DOMPurify from "dompurify"; import katex from "katex"; import { highlight } from "./live_editor/monaco"; // Custom renderer overrides const renderer = new marked.Renderer(); renderer.link = function (href, title, text) { // Browser normalizes URLs with .. so we use a __parent__ modifier // instead and handle it on the server href = href .split("/") .map((part) => (part === ".." ? "__parent__" : part)) .join("/"); return marked.Renderer.prototype.link.call(this, href, title, text); }; marked.setOptions({ renderer, // Reuse Monaco highlighter for Markdown code blocks 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") { if (node.host !== window.location.host) { node.setAttribute("target", "_blank"); node.setAttribute("rel", "noreferrer noopener"); } else { node.setAttribute("data-phx-link", "redirect"); node.setAttribute("data-phx-link-state", "push"); } } }); /** * 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 = `