import { asset, clientStore, editor, markdown, system } from "$sb/syscalls.ts"; import { renderMarkdownToHtml } from "./markdown_render.ts"; import { resolvePath } from "$sb/lib/resolve.ts"; import { expandCodeWidgets } from "./api.ts"; export async function updateMarkdownPreview() { if (!(await clientStore.get("enableMarkdownPreview"))) { return; } const currentPage = await editor.getCurrentPage(); const text = await editor.getText(); const mdTree = await markdown.parseMarkdown(text); // const cleanMd = await cleanMarkdown(text); const css = await asset.readAsset("assets/preview.css"); const js = await asset.readAsset("assets/preview.js"); await expandCodeWidgets(mdTree, currentPage); const html = renderMarkdownToHtml(mdTree, { smartHardBreak: true, annotationPositions: true, translateUrls: (url) => { if (!url.includes("://")) { url = resolvePath(currentPage, decodeURI(url), true); } return url; }, }); await editor.showPanel( "rhs", 2, `