This commit is contained in:
Zef Hemel
2023-11-12 12:08:09 +01:00
parent f3d72ca6f4
commit 95301a41ff
2 changed files with 29 additions and 1 deletions
+8 -1
View File
@@ -248,6 +248,7 @@ function render(
name: "a",
attrs: {
href: `/${ref.replace("@", "#")}`,
class: "wiki-link",
"data-ref": ref,
},
body: linkText,
@@ -333,7 +334,13 @@ function render(
}
case "DeadlineDate":
return renderToText(t);
return {
name: "span",
attrs: {
class: "task-deadline",
},
body: renderToText(t),
};
// Tables
case "Table":