Skip to content

Commit

Permalink
fix: Fixes issue where the default fallback for non-conditional block…
Browse files Browse the repository at this point in the history
…s would cause a list to render (close #409)
  • Loading branch information
valentine195 committed May 3, 2024
1 parent 22315b6 commit de5b6bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/view/ui/MarkdownHolder.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@
}
const markdown = (node: HTMLElement) => {
MarkdownRenderer.render(app, property, node, context, renderer);
if (property === "-") {
property = "\\-"
}
MarkdownRenderer.render(plugin.app, property, node, context, renderer);
};
</script>

Expand Down

0 comments on commit de5b6bf

Please sign in to comment.