This commit is contained in:
Cat /dev/Nulo 2023-09-10 17:30:51 -03:00
parent f834859781
commit e76296938b

View file

@ -3,7 +3,6 @@ import { basename, extname, join } from "path";
import * as commonmark from "commonmark"; import * as commonmark from "commonmark";
import { import {
a, a,
doctype,
h1, h1,
header, header,
section, section,
@ -17,20 +16,14 @@ import {
ul, ul,
h2, h2,
raw, raw,
p,
VirtualElement, VirtualElement,
time, time,
article, article,
main, main,
img, img,
script,
basicElement,
nav, nav,
source,
} from "@nulo/html.js"; } from "@nulo/html.js";
const div = basicElement("div");
const reader = new commonmark.Parser({ smart: true }); const reader = new commonmark.Parser({ smart: true });
const writer = new commonmark.HtmlRenderer({ safe: false, smart: true }); const writer = new commonmark.HtmlRenderer({ safe: false, smart: true });