Complete redo of content indexing and querying (#517)

Complete redo of data store
Introduces live queries and live templates
This commit is contained in:
Zef Hemel
2023-10-03 14:16:33 +02:00
committed by GitHub
parent 7af98e7c7b
commit 0313565610
200 changed files with 4675 additions and 4363 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ Deno.test("Markdown render", async () => {
new URL("test/example.md", import.meta.url).pathname,
);
const tree = parse(lang, testFile);
await renderMarkdownToHtml(tree, {
renderMarkdownToHtml(tree, {
failOnUnknown: true,
});
// console.log("HTML", html);
@@ -34,7 +34,7 @@ Deno.test("Smart hard break test", async () => {
*world!*`;
const lang = buildMarkdown([]);
const tree = parse(lang, example);
const html = await renderMarkdownToHtml(tree, {
const html = renderMarkdownToHtml(tree, {
failOnUnknown: true,
smartHardBreak: true,
});