Fix Markdown functions in root component

This commit is contained in:
D. Berge
2025-07-25 13:32:30 +02:00
parent fc379aba14
commit 07d8e97f74

View File

@@ -47,9 +47,11 @@ new Vue({
methods: {
markdown (value) {
return typeof value == "string"
? marked(value)
: value;
return markdown(value);
},
markdownInline (value) {
return markdownInline(value);
},
showSnack(text, colour = "primary") {