File: xml3.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 (24 lines) | stat: -rw-r--r-- 438 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
20
21
22
23
24
The markdown="1" attribute does NOT get recursively applied
*** Parameters: ***
{}
*** Markdown input: ***
<table markdown='1'>
	Blah
	<thead>
		<tr><td>*em*</td></tr>
	</thead>
</table>

*** Output of inspect ***
md_el(:document,[
	md_html("<table markdown='1'>\n\tBlah\n\t<thead>\n\t\t<tr><td>*em*</td></tr>\n\t</thead>\n</table>")
],{},[])
*** Output of to_html ***
<table>
	Blah
	<thead>
		<tr><td>*em*</td></tr>
	</thead>
</table>