Skip to content

Instantly share code, notes, and snippets.

@bpierre
Created February 19, 2013 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bpierre/4991393 to your computer and use it in GitHub Desktop.
Save bpierre/4991393 to your computer and use it in GitHub Desktop.
Results of the markdown-testsuite with markdown-js
not ok test/markdown-testsuite.t.js .................. 51/102
Command: "node" "markdown-testsuite.t.js"
TAP version 13
ok 1 2-paragraphs-hard-return-spaces
ok 2 2-paragraphs-hard-return
ok 3 2-paragraphs-line-returns
ok 4 2-paragraphs-line-spaces
ok 5 2-paragraphs-line-tab
ok 6 ampersand-text-flow
ok 7 ampersand-uri
ok 8 asterisk-near-text
ok 9 asterisk
ok 10 backslash-escape
not ok 11 blockquote-added-markup
---
stack: ~
found: <blockquote><h1>heading level 1</h1><p>paragraph</p></blockquote>
wanted: |
<blockquote>
<h1>heading level 1</h1>
<p>paragraph</p>
</blockquote>
diff: |
FOUND: <blockquote><h1>heading level 1</h1><p>p
WANTED: <blockquote>\n<h1>heading level 1</h1>\n
^ (at position = 12)
...
not ok 12 blockquote-line-2-paragraphs
---
stack: ~
found: <blockquote><p>A blockquote with a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.</p><p>and a second very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.</p></blockquote>
wanted: |
<blockquote>
<p>A blockquote with a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.</p>
<p>and a second very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.</p>
</blockquote>
diff: |
FOUND: <blockquote><p>A blockquote with a very
WANTED: <blockquote>\n<p>A blockquote with a ver
^ (at position = 12)
...
not ok 13 blockquote-line
---
stack: ~
found: <blockquote><p>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph in a blockquote.</p></blockquote>
wanted: |
<blockquote>
<p>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph in a blockquote.</p>
</blockquote>
diff: |
FOUND: <blockquote><p>This a very long long lon
WANTED: <blockquote>\n<p>This a very long long l
^ (at position = 12)
...
not ok 14 blockquote-multiline-1-space-begin
---
stack: ~
found: |
<blockquote><p>A blockquote
on multiple lines
like this.</p></blockquote>
wanted: |
<blockquote>
<p>A blockquote
on multiple lines
like this.</p>
</blockquote>
diff: |
FOUND: <blockquote><p>A blockquote\non multiple
WANTED: <blockquote>\n<p>A blockquote\non multip
^ (at position = 12)
...
not ok 15 blockquote-multiline-1-space-end
---
stack: ~
found: |
<blockquote><p>A blockquote
on multiple lines
like this. </p></blockquote>
wanted: |
<blockquote>
<p>A blockquote
on multiple lines
like this. </p>
</blockquote>
diff: |
FOUND: <blockquote><p>A blockquote \non multipl
WANTED: <blockquote>\n<p>A blockquote \non multi
^ (at position = 12)
...
not ok 16 blockquote-multiline-2-paragraphs
---
stack: ~
found: |
<blockquote><p>A blockquote
on multiple lines
like this.</p><p>But it has
two paragraphs.</p></blockquote>
wanted: |
<blockquote>
<p>A blockquote
on multiple lines
like this.</p>
<p>But it has
two paragraphs.</p>
</blockquote>
diff: |
FOUND: <blockquote><p>A blockquote\non multiple
WANTED: <blockquote>\n<p>A blockquote\non multip
^ (at position = 12)
...
not ok 17 blockquote-multiline
---
stack: ~
found: |
<blockquote><p>A blockquote
on multiple lines
like this</p></blockquote>
wanted: |
<blockquote>
<p>A blockquote
on multiple lines
like this</p>
</blockquote>
diff: |
FOUND: <blockquote><p>A blockquote\non multiple
WANTED: <blockquote>\n<p>A blockquote\non multip
^ (at position = 12)
...
not ok 18 blockquote-nested-multiplereturn-level1
---
stack: ~
found: <blockquote><p>This is the first level of quoting.</p><blockquote><p>This is nested blockquote.</p></blockquote><p>Back to the first level.</p></blockquote>
wanted: |
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
<p>Back to the first level.</p>
</blockquote>
diff: |
FOUND: <blockquote><p>This is the first level o
WANTED: <blockquote>\n<p>This is the first level
^ (at position = 12)
...
not ok 19 blockquote-nested-multiplereturn
---
stack: ~
found: <blockquote><p>This is the first level of quoting.</p><blockquote><p>This is nested blockquote.</p></blockquote></blockquote>
wanted: |
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
</blockquote>
diff: |
FOUND: <blockquote><p>This is the first level o
WANTED: <blockquote>\n<p>This is the first level
^ (at position = 12)
...
not ok 20 blockquote-nested-return-level1
---
stack: ~
found: |
<blockquote><p>This is the first level of quoting.</p><blockquote><p>This is nested blockquote.
Back to the first level.</p></blockquote></blockquote>
wanted: |
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.
Back to the first level.</p>
</blockquote>
</blockquote>
diff: |
FOUND: <blockquote><p>This is the first level o
WANTED: <blockquote>\n<p>This is the first level
^ (at position = 12)
...
not ok 21 blockquote-nested
---
stack: ~
found: <blockquote><p>This is the first level of quoting.</p><blockquote><p>This is nested blockquote.</p></blockquote></blockquote>
wanted: |
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
</blockquote>
diff: |
FOUND: <blockquote><p>This is the first level o
WANTED: <blockquote>\n<p>This is the first level
^ (at position = 12)
...
not ok 22 code-1-tab
---
stack: ~
found: |
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10</code></pre>
wanted: |
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10
</code></pre>
diff: |
FOUND: INFINITE\n20 GOTO 10</code></pre>
WANTED: INFINITE\n20 GOTO 10\n</code></pre>
^ (at position = 45)
...
not ok 23 code-4-spaces-escaping
---
stack: ~
found: |
<pre><code>10 PRINT &lt; &gt; &amp;
20 GOTO 10</code></pre>
wanted: |
<pre><code>10 PRINT &lt; &gt; &amp;
20 GOTO 10
</code></pre>
diff: |
FOUND: t; &amp;\n20 GOTO 10</code></pre>
WANTED: t; &amp;\n20 GOTO 10\n</code></pre>
^ (at position = 46)
...
not ok 24 code-4-spaces
---
stack: ~
found: |
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10</code></pre>
wanted: |
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10
</code></pre>
diff: |
FOUND: INFINITE\n20 GOTO 10</code></pre>
WANTED: INFINITE\n20 GOTO 10\n</code></pre>
^ (at position = 45)
...
ok 25 em-middle-word
ok 26 em-star
ok 27 em-underscore
not ok 28 entities-text-flow
---
stack: ~
found: <p>HTML entities are written using ampersand notation: &amp;copy;</p>
wanted: <p>HTML entities are written using ampersand notation: &copy;</p>
diff: |
FOUND: mpersand notation: &amp;copy;</p>
WANTED: mpersand notation: &copy;</p>
^ (at position = 56)
...
not ok 29 EOL-CR+LF
---
stack: ~
found: |
<p>These lines all end with end of line (EOL) sequences.
</p>
<p>Seriously, they really do.
</p>
<p>If you don&#39;t believe me: HEX EDIT!
</p>
wanted: |
<p>These lines all end with end of line (EOL) sequences.</p>
<p>Seriously, they really do.</p>
<p>If you don't believe me: HEX EDIT!</p>
diff: |
FOUND: ine (EOL) sequences.\r</p>\n\n<p>Serious
WANTED: ine (EOL) sequences.</p>\r\n\r\n<p>Serio
^ (at position = 56)
...
not ok 30 EOL-CR
---
stack: ~
found: <p>These lines all end with end of line (EOL) sequences.
Seriously, they really do.
If you don&#39;t believe me: HEX EDIT!
</p>
wanted: <p>These lines all end with end of line (EOL) sequences.</p>
<p>Seriously, they really do.</p>
<p>If you don't believe me: HEX EDIT!</p>
diff: |
FOUND: ine (EOL) sequences.\r\rSeriously, they
WANTED: ine (EOL) sequences.</p>\r\r<p>Seriously
^ (at position = 56)
...
not ok 31 EOL-LF
---
stack: ~
found: |
<p>These lines all end with end of line (EOL) sequences.</p>
<p>Seriously, they really do.</p>
<p>If you don&#39;t believe me: HEX EDIT!</p>
wanted: |
<p>These lines all end with end of line (EOL) sequences.</p>
<p>Seriously, they really do.</p>
<p>If you don't believe me: HEX EDIT!</p>
diff: |
FOUND: /p>\n\n<p>If you don&#39;t believe me: H
WANTED: /p>\n\n<p>If you don't believe me: HEX E
^ (at position = 110)
...
ok 32 header-level1-equal-underlined
ok 33 header-level1-hash-sign-closed
not ok 34 header-level1-hash-sign-trailing-1-space
---
stack: ~
found: <p> # This is an H1</p>
wanted: <p># This is an H1</p>
diff: |
FOUND: <p> # This is an H1</p>
WANTED: <p># This is an H1</p>
^ (at position = 3)
...
ok 35 header-level1-hash-sign-trailing-2-spaces
ok 36 header-level1-hash-sign
ok 37 header-level2-dash-underlined
ok 38 header-level2-hash-sign-closed
ok 39 header-level2-hash-sign
ok 40 header-level3-hash-sign-closed
ok 41 header-level3-hash-sign
ok 42 header-level4-hash-sign-closed
ok 43 header-level4-hash-sign
ok 44 header-level5-hash-sign-closed
ok 45 header-level5-hash-sign
ok 46 header-level6-hash-sign-closed
ok 47 header-level6-hash-sign
not ok 48 horizontal-rule-3-dashes-spaces
---
stack: ~
found: <hr/>
wanted: <hr />
diff: |
FOUND: <hr/>
WANTED: <hr />
^ (at position = 3)
...
not ok 49 horizontal-rule-3-dashes
---
stack: ~
found: <hr/>
wanted: <hr />
diff: |
FOUND: <hr/>
WANTED: <hr />
^ (at position = 3)
...
not ok 50 horizontal-rule-3-stars
---
stack: ~
found: <hr/>
wanted: <hr />
diff: |
FOUND: <hr/>
WANTED: <hr />
^ (at position = 3)
...
not ok 51 horizontal-rule-3-underscores
---
stack: ~
found: <hr/>
wanted: <hr />
diff: |
FOUND: <hr/>
WANTED: <hr />
^ (at position = 3)
...
not ok 52 horizontal-rule-7-dashes
---
stack: ~
found: <hr/>
wanted: <hr />
diff: |
FOUND: <hr/>
WANTED: <hr />
^ (at position = 3)
...
not ok 53 img-idref-title
---
stack: ~
found: <p><img alt="HTML5" src="http://www.w3.org/html/logo/img/mark-word-icon.png" title="HTML5 for everyone"/></p>
wanted: <p><img src="http://www.w3.org/html/logo/img/mark-word-icon.png" alt="HTML5" title="HTML5 for everyone" /></p>
diff: |
FOUND: <p><img alt=\"HTML5\" src=\"http://www.w
WANTED: <p><img src=\"http://www.w3.org/html/log
^ (at position = 8)
...
not ok 54 img-idref
---
stack: ~
found: <p><img alt="HTML5" src="http://www.w3.org/html/logo/img/mark-word-icon.png"/></p>
wanted: <p><img src="http://www.w3.org/html/logo/img/mark-word-icon.png" alt="HTML5" /></p>
diff: |
FOUND: <p><img alt=\"HTML5\" src=\"http://www.w
WANTED: <p><img src=\"http://www.w3.org/html/log
^ (at position = 8)
...
not ok 55 img-title
---
stack: ~
found: <p><img alt="HTML5" title="HTML5 logo for everyone" src="http://www.w3.org/html/logo/img/mark-word-icon.png"/></p>
wanted: <p><img src="http://www.w3.org/html/logo/img/mark-word-icon.png" alt="HTML5" title="HTML5 logo for everyone" /></p>
diff: |
FOUND: <p><img alt=\"HTML5\" title=\"HTML5 logo
WANTED: <p><img src=\"http://www.w3.org/html/log
^ (at position = 8)
...
not ok 56 img
---
stack: ~
found: <p><img alt="HTML5" src="http://www.w3.org/html/logo/img/mark-word-icon.png"/></p>
wanted: <p><img src="http://www.w3.org/html/logo/img/mark-word-icon.png" alt="HTML5" /></p>
diff: |
FOUND: <p><img alt=\"HTML5\" src=\"http://www.w
WANTED: <p><img src=\"http://www.w3.org/html/log
^ (at position = 8)
...
ok 57 inline-code-escaping-entities
ok 58 inline-code-with-visible-backtick
ok 59 inline-code
not ok 60 line-break-2-spaces
---
stack: ~
found: <p>A first sentence<br/>and a line break.</p>
wanted: |
<p>A first sentence<br />
and a line break.</p>
diff: |
FOUND: >A first sentence<br/>and a line break.<
WANTED: >A first sentence<br />\nand a line brea
^ (at position = 22)
...
not ok 61 line-break-5-spaces
---
stack: ~
found: <p>A first sentence <br/>and a line break.</p>
wanted: |
<p>A first sentence<br />
and a line break.</p>
diff: |
FOUND: <p>A first sentence <br/>and a line br
WANTED: <p>A first sentence<br />\nand a line br
^ (at position = 19)
...
not ok 62 link-automatic-email
---
stack: ~
found: <p>This is an automatic email link <a href="mailto:foolspam@example.org">foolspam@example.org</a></p>
wanted: <p>This is an automatic email link <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#x6f;&#x3a;&#102;&#111;&#x6f;&#x6c;&#x73;&#x70;&#x61;&#x6d;&#x40;&#101;&#120;&#x61;&#x6d;&#112;&#x6c;&#101;&#46;&#x6f;&#114;&#x67;">&#x66;&#x6f;&#x6f;&#x6c;&#x73;&#112;&#x61;&#109;&#64;&#101;&#x78;&#97;&#x6d;&#112;&#x6c;&#101;&#x2e;&#x6f;&#x72;&#x67;</a></p>
diff: |
FOUND: mail link <a href=\"mailto:foolspam@exam
WANTED: mail link <a href=\"&#x6d;&#x61;&#105;&#
^ (at position = 44)
...
ok 63 link-automatic
ok 64 link-bracket-paranthesis-title
ok 65 link-bracket-paranthesis
ok 66 link-idref-angle-bracket
ok 67 link-idref-implicit-spaces
ok 68 link-idref-implicit
ok 69 link-idref-space
ok 70 link-idref-title-next-line
ok 71 link-idref-title-paranthesis
ok 72 link-idref-title-single-quote
ok 73 link-idref-title
ok 74 link-idref
not ok 75 list-blockquote
---
stack: ~
found: <ul><li><p>a list containing a blockquote</p><blockquote><p>this the blockquote in the list</p></blockquote></li></ul>
wanted: |
<ul>
<li><p>a list containing a blockquote</p>
<blockquote>
<p>this the blockquote in the list</p>
</blockquote></li>
</ul>
diff: |
FOUND: <ul><li><p>a list containing a blockquot
WANTED: <ul>\n<li><p>a list containing a blockqu
^ (at position = 4)
...
not ok 76 list-code
---
stack: ~
found: |
<ul><li><p>a list containing a block of code</p><pre><code>10 PRINT HELLO INFINITE
20 GOTO 10</code></pre></li></ul>
wanted: |
<ul>
<li><p>a list containing a block of code</p>
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10
</code></pre></li>
</ul>
diff: |
FOUND: <ul><li><p>a list containing a block of
WANTED: <ul>\n<li><p>a list containing a block o
^ (at position = 4)
...
not ok 77 list-multiparagraphs-tab
---
stack: ~
found: |
<ul><li><p>This is a list item with two paragraphs. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
mi posuere lectus.</p><p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
sit amet velit.</p></li><li><p>Suspendisse id sem consectetuer libero luctus adipiscing.</p></li></ul>
wanted: |
<ul>
<li><p>This is a list item with two paragraphs. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
mi posuere lectus.</p>
<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
sit amet velit.</p></li>
<li><p>Suspendisse id sem consectetuer libero luctus adipiscing.</p></li>
</ul>
diff: |
FOUND: <ul><li><p>This is a list item with two
WANTED: <ul>\n<li><p>This is a list item with tw
^ (at position = 4)
...
not ok 78 list-multiparagraphs
---
stack: ~
found: |
<ul><li><p>This is a list item with two paragraphs. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
mi posuere lectus.</p><p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
sit amet velit.</p></li><li><p>Suspendisse id sem consectetuer libero luctus adipiscing.</p></li></ul>
wanted: |
<ul>
<li><p>This is a list item with two paragraphs. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
mi posuere lectus.</p>
<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
sit amet velit.</p></li>
<li><p>Suspendisse id sem consectetuer libero luctus adipiscing.</p></li>
</ul>
diff: |
FOUND: <ul><li><p>This is a list item with two
WANTED: <ul>\n<li><p>This is a list item with tw
^ (at position = 4)
...
ok 79 ordered-list-escaped
not ok 80 ordered-list-items-random-number
---
stack: ~
found: <ol><li>list item 1</li><li>list item 2</li><li>list item 3</li></ol>
wanted: |
<ol>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ol>
diff: |
FOUND: <ol><li>list item 1</li><li>list item 2<
WANTED: <ol>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 81 ordered-list-items
---
stack: ~
found: <ol><li>list item 1</li><li>list item 2</li><li>list item 3</li></ol>
wanted: |
<ol>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ol>
diff: |
FOUND: <ol><li>list item 1</li><li>list item 2<
WANTED: <ol>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
ok 82 paragraph-hard-return
ok 83 paragraph-line
not ok 84 paragraph-trailing-leading-spaces
---
stack: ~
found: <p> This is a paragraph with a trailing and leading space. </p>
wanted: <p>This is a paragraph with a trailing and leading space. </p>
diff: |
FOUND: <p> This is a paragraph with a trailing
WANTED: <p>This is a paragraph with a trailing a
^ (at position = 3)
...
not ok 85 paragraph-trailing-tab
---
stack: ~
found: <p>This is a paragraph with 1 trailing tab. </p>
wanted: <p>This is a paragraph with 1 trailing tab. </p>
diff: |
FOUND: with 1 trailing tab.\t</p>
WANTED: with 1 trailing tab. </p>
^ (at position = 43)
...
not ok 86 paragraphs-2-leading-spaces
---
stack: ~
found: <p> This is a paragraph with 2 leading spaces.</p>
wanted: <p>This is a paragraph with 2 leading spaces.</p>
diff: |
FOUND: <p> This is a paragraph with 2 leading
WANTED: <p>This is a paragraph with 2 leading sp
^ (at position = 3)
...
not ok 87 paragraphs-3-leading-spaces
---
stack: ~
found: <p> This is a paragraph with 3 leading spaces.</p>
wanted: <p>This is a paragraph with 3 leading spaces.</p>
diff: |
FOUND: <p> This is a paragraph with 3 leading
WANTED: <p>This is a paragraph with 3 leading sp
^ (at position = 3)
...
not ok 88 paragraphs-leading-space
---
stack: ~
found: <p> This is a paragraph with 1 leading space.</p>
wanted: <p>This is a paragraph with 1 leading space.</p>
diff: |
FOUND: <p> This is a paragraph with 1 leading s
WANTED: <p>This is a paragraph with 1 leading sp
^ (at position = 3)
...
ok 89 paragraphs-trailing-spaces
ok 90 strong-middle-word
ok 91 strong-star
ok 92 strong-underscore
not ok 93 unordered-list-items-dashsign
---
stack: ~
found: <ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul>
wanted: |
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
diff: |
FOUND: <ul><li>list item 1</li><li>list item 2<
WANTED: <ul>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 94 unordered-list-items-leading-1space
---
stack: ~
found: <ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul>
wanted: |
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
diff: |
FOUND: <ul><li>list item 1</li><li>list item 2<
WANTED: <ul>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 95 unordered-list-items-leading-2spaces
---
stack: ~
found: <ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul>
wanted: |
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
diff: |
FOUND: <ul><li>list item 1</li><li>list item 2<
WANTED: <ul>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 96 unordered-list-items-leading-3spaces
---
stack: ~
found: <ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul>
wanted: |
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
diff: |
FOUND: <ul><li>list item 1</li><li>list item 2<
WANTED: <ul>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 97 unordered-list-items-plussign
---
stack: ~
found: <ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul>
wanted: |
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
diff: |
FOUND: <ul><li>list item 1</li><li>list item 2<
WANTED: <ul>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 98 unordered-list-items
---
stack: ~
found: <ul><li>list item 1</li><li>list item 2</li><li>list item 3</li></ul>
wanted: |
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
diff: |
FOUND: <ul><li>list item 1</li><li>list item 2<
WANTED: <ul>\n<li>list item 1</li>\n<li>list ite
^ (at position = 4)
...
not ok 99 unordered-list-paragraphs
---
stack: ~
found: <ul><li><p>list item in paragraph</p></li><li><p>another list item in paragraph</p></li></ul>
wanted: |
<ul>
<li><p>list item in paragraph</p></li>
<li><p>another list item in paragraph</p></li>
</ul>
diff: |
FOUND: <ul><li><p>list item in paragraph</p></l
WANTED: <ul>\n<li><p>list item in paragraph</p><
^ (at position = 4)
...
not ok 100 unordered-list-unindented-content
---
stack: ~
found: <ul><li>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph in a list.</li><li>and yet another long long long long long long long long long long long long long long long long long long long long long long line.</li></ul>
wanted: |
<ul>
<li>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph in a list.</li>
<li>and yet another long long long long long long long long long long long long long long long long long long long long long long line.</li>
</ul>
diff: |
FOUND: <ul><li>This a very long long long long
WANTED: <ul>\n<li>This a very long long long lon
^ (at position = 4)
...
not ok 101 unordered-list-with-indented-content
---
stack: ~
found: |
<ul><li>This is a list item
with the conten on
multiline and indented.</li><li>And this another list item
with the same principle.</li></ul>
wanted: |
<ul>
<li>This is a list item
with the conten on
multiline and indented.</li>
<li>And this another list item
with the same principle.</li>
</ul>
diff: |
FOUND: <ul><li>This is a list item\nwith the co
WANTED: <ul>\n<li>This is a list item\nwith the
^ (at position = 4)
...
ok 102 test/markdown-testsuite.t.js
1..102
# tests 102
# pass 51
# fail 51
total ................................................ 51/102
not ok
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment