markdown icon indicating copy to clipboard operation
markdown copied to clipboard

Should handle strong emphasis correctly

Open kellyjosephprice opened this issue 4 years ago • 0 comments

https://github.github.com/gfm/#emphasis-and-strong-emphasis

> JSON.stringify(window.RDMD.mdast("***strong** emphasis*"), null, 2)
"{
  "type": "root",
  "children": [
    {
      "type": "paragraph",
      "children": [
        {
          "type": "strong",
          "children": [
            {
              "type": "text",
              "value": "*strong"
            }
          ]
        },
        {
          "type": "text",
          "value": " emphasis*"
        }
      ]
    }
  ]
}"

kellyjosephprice avatar Jan 11 '21 21:01 kellyjosephprice