2008-01-08 07:01:35 +01:00
|
|
|
Write a comment here
|
|
|
|
*** Parameters: ***
|
2009-05-13 08:27:39 +02:00
|
|
|
require 'maruku/ext/math';{:html_math_engine => 'itex2mml' }
|
2008-01-08 07:01:35 +01:00
|
|
|
*** 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 ***
|
2011-08-12 03:36:44 +02:00
|
|
|
<table><math xmlns="http://www.w3.org/1998/Math/MathML" display="inline" class="maruku-mathml"><mi>α</mi></math><thead>
|
|
|
|
<td><math xmlns="http://www.w3.org/1998/Math/MathML" display="inline" class="maruku-mathml"><mi>β</mi></math></td>
|
2008-01-08 07:01:35 +01:00
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
*** Output of to_latex ***
|
|
|
|
|
|
|
|
*** Output of to_md ***
|
|
|
|
|
|
|
|
*** Output of to_s ***
|
|
|
|
|