2008-01-08 07:01:35 +01:00
|
|
|
Write a comment here
|
|
|
|
*** Parameters: ***
|
|
|
|
{}
|
|
|
|
*** Markdown input: ***
|
|
|
|
<table markdown='1'>
|
|
|
|
$\alpha$
|
|
|
|
<thead>
|
|
|
|
<td>$\beta$</td>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
*** Output of inspect ***
|
|
|
|
md_el(:document,[
|
|
|
|
md_html("<table markdown='1'>\n\t$\\alpha$\n\t<thead>\n\t\t<td>$\\beta$</td>\n\t</thead>\n</table>")
|
|
|
|
],{},[])
|
|
|
|
*** Output of to_html ***
|
|
|
|
<table><span class='maruku-inline'><code class='maruku-mathml'>\alpha</code></span><thead>
|
|
|
|
<td><span class='maruku-inline'><code class='maruku-mathml'>\beta</code></span></td>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
*** Output of to_latex ***
|
|
|
|
|
|
|
|
*** Output of to_md ***
|
|
|
|
|
|
|
|
*** Output of to_s ***
|
|
|
|
|
|
|
|
*** EOF ***
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-02-29 08:30:46 +01:00
|
|
|
Failed tests: [:to_html]
|
2008-01-08 07:01:35 +01:00
|
|
|
|
2008-02-29 08:30:46 +01:00
|
|
|
*** Output of inspect ***
|
|
|
|
md_el(:document,[
|
|
|
|
md_html("<table markdown='1'>\n\t$\\alpha$\n\t<thead>\n\t\t<td>$\\beta$</td>\n\t</thead>\n</table>")
|
|
|
|
],{},[])
|
|
|
|
*** Output of to_html ***
|
|
|
|
-----| WARNING | -----
|
|
|
|
<table><code class='maruku-mathml'>\alpha</code><thead>
|
|
|
|
<td><code class='maruku-mathml'>\beta</code></td>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
*** Output of to_latex ***
|
|
|
|
|
|
|
|
*** Output of to_md ***
|
|
|
|
|
|
|
|
*** Output of to_s ***
|
2008-01-08 07:01:35 +01:00
|
|
|
|
|
|
|
*** Output of Markdown.pl ***
|
|
|
|
<table markdown='1'>
|
2008-01-14 21:46:38 +01:00
|
|
|
$\alpha$
|
2008-01-08 07:01:35 +01:00
|
|
|
<thead>
|
2008-01-14 21:46:38 +01:00
|
|
|
<td>$\beta$</td>
|
2008-01-08 07:01:35 +01:00
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
*** Output of Markdown.pl (parsed) ***
|
2008-02-29 08:30:46 +01:00
|
|
|
<div>
|
|
|
|
<table markdown='1'>
|
|
|
|
$\alpha$
|
|
|
|
<thead>
|
|
|
|
<td>
|
|
|
|
$\beta$
|
|
|
|
</td>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|