···66661. an unordered list
67672. which has
68686969-1) nesting
7070-2) high numbers
6969+ 1. nesting
7070+ 2. high numbers
71717272-999999999. biiig
7272+3. biiig 💥💥💥 <!-- should be big? itshould -->
73737474### Check
7575
+15
rehype-custom-html.ts
···11+import type { Plugin } from "unified";
22+import type { Root } from "hast";
33+type Options = {};
44+55+const plugin: Plugin<[Options], Root> = function (options) {
66+ return function (node, file) {
77+ if (file.basename !== "full-test.md") return;
88+ console.log(node);
99+ for (const n of node.children) {
1010+ console.log(n.type == "element" ? n.tagName : n.type);
1111+ }
1212+ };
1313+};
1414+1515+export default plugin;