Open fwkoch opened 2 years ago
353: Interpretation of bullets vs. emphasis vs. plain text
Current:
- title: Emphasis and strong emphasis - example 353
mdast:
type: root
children:
- type: list
ordered: false
spread: false
children:
- type: listItem
spread: true
children:
- type: text
value: a *
myst: |
* a *
html: |
<p>* a *</p>
Expected:
- title: Emphasis and strong emphasis - example 353
mdast:
type: root
children:
- type: paragraph
children:
- type: text
value: '* a *'
myst: |
* a *
html: |
<p>* a *</p>
333: Losing whitespace
Current:
- title: Code spans - example 333
mdast:
type: root
children:
- type: paragraph
children:
- type: inlineCode
value: b
myst: |
` b `
html: |
<p><code> b </code></p>
Expected:
- title: Code spans - example 333
mdast:
type: root
children:
- type: paragraph
children:
- type: inlineCode
value: ' b '
myst: |
` b `
html: |
<p><code> b </code></p>
Current failing cmark json tests: