We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f12038e commit 9f11b1bCopy full SHA for 9f11b1b
src/notebook.jl
@@ -1,5 +1,5 @@
1
### A Pluto.jl notebook ###
2
-# v0.20.9
+# v0.20.14
3
4
using Markdown
5
using InteractiveUtils
@@ -311,7 +311,6 @@ function run_mdx(s::String;
311
else
312
313
# we want to apply our own CM parser, so we do the MarkdownLiteral.jl trick manually:
314
- result_str = repr(MIME"text/html"(), result)
315
cm_parser = CommonMark.Parser()
316
CommonMark.enable!(cm_parser, [
317
CommonMark.AdmonitionRule(),
@@ -328,6 +327,7 @@ function run_mdx(s::String;
328
327
CommonMark.FrontMatterRule(yaml=YAML.load),
329
])
330
+ result_str = repr(MIME"text/html"(), result)
331
ast = cm_parser(result_str)
332
333
ast, CommonMark.frontmatter(ast)
0 commit comments