Denoでscrapbox-parserを使う
code:hello.ts
console.log(parse("\nhelloa linkworld")); code:output
$ deno run hello.ts
Check file:///Users/nishio/scaffold_network/hello.ts
[
{ type: "title", text: "" },
{
indent: 0,
type: "line",
nodes: [
{ type: "plain", raw: "hello", text: "hello" },
{ type: "link", raw: "a link", pathType: "relative", href: "a link", content: "" }, { type: "plain", raw: "world", text: "world" }
]
}
]