File: issue67.md

package info (click to toggle)
ruby-maruku 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,296 kB
  • ctags: 492
  • sloc: ruby: 5,726; xml: 235; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
A span at the beginning of a list item shouldn't cause the other list elements to be wrapped in paragraphs or remove the inline element. https://github.com/bhollis/maruku/issues/67
*** Parameters: ***
{}
*** Markdown input: ***
- One
- <del>Two</del>
- Three
*** Output of inspect ***
md_el(:document, md_el(:ul, [
	md_li("One", false),
	md_li(md_html("<del>Two</del>"), false),
	md_li("Three", false)
]))
*** Output of to_html ***
<ul>
  <li>One</li>
  <li><del>Two</del></li>
  <li>Three</li>
</ul>