Skip to content

Commit

Permalink
setting html to true in mdit configuration, so that html tags are ren…
Browse files Browse the repository at this point in the history
…dered properly
  • Loading branch information
assuntad23 committed Mar 25, 2024
1 parent b4850ef commit da607fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/components/Panels/HelpModeText.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ import Heading from "@/components/Common/Heading.vue";
import LoadingSpan from "@/components/LoadingSpan.vue";
library.add(faTimes);
const md = MarkdownIt();
const md = MarkdownIt({
html: true,
});
// local refs
const { content, loading } = storeToRefs(useHelpModeTextStore());
Expand Down

0 comments on commit da607fd

Please sign in to comment.