commonmark.js dingus

clear    

    <h2>Try CommonMark</h2>
    <p>You can try CommonMark here.  This dingus is powered by
    <a href="https://github.com/commonmark/commonmark.js">commonmark.js</a>, the
    JavaScript reference implementation.</p>
    <ol>
    <li>item one</li>
    <li>item two
    <ul>
    <li>sublist</li>
    <li>sublist</li>
    </ul>
    </li>
    </ol>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE document SYSTEM "CommonMark.dtd">
    <document xmlns="http://commonmark.org/xml/1.0">
      <heading level="2">
        <text>Try CommonMark</text>
      </heading>
      <paragraph>
        <text>You can try CommonMark here.  This dingus is powered by</text>
        <softbreak />
        <link destination="https://github.com/commonmark/commonmark.js" title="">
          <text>commonmark.js</text>
        </link>
        <text>, the</text>
        <softbreak />
        <text>JavaScript reference implementation.</text>
      </paragraph>
      <list type="ordered" start="1" tight="true" delimiter="period">
        <item>
          <paragraph>
            <text>item one</text>
          </paragraph>
        </item>
        <item>
          <paragraph>
            <text>item two</text>
          </paragraph>
          <list type="bullet" tight="true">
            <item>
              <paragraph>
                <text>sublist</text>
              </paragraph>
            </item>
            <item>
              <paragraph>
                <text>sublist</text>
              </paragraph>
            </item>
          </list>
        </item>
      </list>
    </document>
    
    Parsed in 3 ms. Rendered in 1 ms.