diff --git a/app/imports/ui/components/MarkdownText.vue b/app/imports/ui/components/MarkdownText.vue index 1d2ffc06..72cb843a 100644 --- a/app/imports/ui/components/MarkdownText.vue +++ b/app/imports/ui/components/MarkdownText.vue @@ -13,6 +13,8 @@ computed: { compiledMarkdown() { if (!this.markdown) return; + //TODO sanitizing by marked is deprecated + //TODO Markdown
need to be styled to match their vue components return marked(this.markdown, { sanitize: true }); }, }, diff --git a/app/imports/ui/properties/viewers/shared/PropertyDescription.vue b/app/imports/ui/properties/viewers/shared/PropertyDescription.vue index 47767357..77f15ba6 100644 --- a/app/imports/ui/properties/viewers/shared/PropertyDescription.vue +++ b/app/imports/ui/properties/viewers/shared/PropertyDescription.vue @@ -1,13 +1,18 @@