26 lines
494 B
Markdown
26 lines
494 B
Markdown
|
|
||
|
*** Parameters: ***
|
||
|
require 'maruku/ext/math'; {:math_enabled => false}
|
||
|
*** Markdown input: ***
|
||
|
|
||
|
This is not $math$.
|
||
|
|
||
|
\[ \alpha \]
|
||
|
|
||
|
*** Output of inspect ***
|
||
|
md_el(:document,[md_par(["This is not $math$."]), md_par(["[ \\alpha ]"])],{},[])
|
||
|
*** Output of to_html ***
|
||
|
<p>This is not $math$.</p>
|
||
|
|
||
|
<p>[ \alpha ]</p>
|
||
|
*** Output of to_latex ***
|
||
|
This is not \$math\$.
|
||
|
|
||
|
[ $\backslash$alpha ]
|
||
|
*** Output of to_md ***
|
||
|
This is not $math$.
|
||
|
|
||
|
[ \alpha ]
|
||
|
*** Output of to_s ***
|
||
|
This is not $math$.[ \alpha ]
|