Enable inline html tags in notebook markdown

Fixes #113351
This commit is contained in:
Matt Bierner 2021-02-11 16:03:56 -08:00
parent ba8a5d8fff
commit 9b4f1aff5d
2 changed files with 4 additions and 965 deletions

File diff suppressed because one or more lines are too long

View file

@ -11,7 +11,9 @@ type extendMarkdownItFnType = (
);
(function () {
const markdownIt = new MarkdownIt();
const markdownIt = new MarkdownIt({
html: true
});
(globalThis as any).extendMarkdownIt = ((f: (md: MarkdownIt.MarkdownIt) => void) => {
f(markdownIt);