import { parse } from "../mod.ts"; Deno.test("Simple", () => { console.log(parse( ` {$ a1, a2, a3 from \"some-library\" as DEFAULT} {$ a1, a2, a3 from \"./some-file\" as DEFAULT} {#const a = b} {!if (a)} {a * 2} {/else} No variable {/} \"I'm the best hacker jajajajaj\" `, { input_path: "/a.html", output_path: "", }, )); });