Replies: 1 comment 1 reply
-
| That's not unexpected. The documentation says that  
 So with  
 This is why you get  With the Docutils-specific processing, which is what  PS: You can use four back-ticks to escape code fences of three back-ticks. That is, this ````markdown
```{note}
Hello World
```
````is rendered as this ```{note}
Hello World
``` | 
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Let's say I have a very simple md file:
If I use
myst-docutils-html5to convert this, the output isI would like to convert it to a simple HTML file (w/o any wrapping or CSS), so I tried
myst_parser.main.to_html. The (for me unexpected) output is this:Is it a different default configuration or why is it that
to_htmlbehaves so differently?Beta Was this translation helpful? Give feedback.
All reactions