Sha256: 6026365513f3b478aff782eee481058eb337a7bbd7afb69ef41edf9037cd7fa9

Contents?: true

Size: 1.26 KB

Versions: 4

Compression:

Stored size: 1.26 KB

Contents

*** Parameters: ***
require 'maruku/ext/math'; {}
*** Markdown input: ***
Here are some formulas:

*	$\alpha$
*	$x^{n}+y^{n} \neq z^{n}$

That's it, nothing else is supported.

*** Output of inspect ***
md_el(:document,[
	md_par(["Here are some formulas:"]),
	md_el(:ul,[
		md_el(:li_span,[md_el(:inline_math,[],{:math=>"\\alpha"},[])],{:want_my_paragraph=>false},[]),
		md_el(:li_span,[md_el(:inline_math,[],{:math=>"x^{n}+y^{n} \\neq z^{n}"},[])],{:want_my_paragraph=>false},[])
	],{},[]),
	md_par(["That", md_entity("rsquo"), "s it, nothing else is supported."])
],{},[])
*** Output of to_html ***
<p>Here are some formulas:</p>

<ul>
<li><code class='maruku-mathml'>\alpha</code></li>

<li><code class='maruku-mathml'>x^{n}+y^{n} \neq z^{n}</code></li>
</ul>

<p>That&#8217;s it, nothing else is supported.</p>
*** Output of to_latex ***
Here are some formulas:

\begin{itemize}%
\item $\alpha$
\item $x^{n}+y^{n} \neq z^{n}$

\end{itemize}
That'{}s it, nothing else is supported.
*** Output of to_md ***
Here are some formulas:

--
That s it, nothing else is supported.
*** Output of to_s ***
Here are some formulas:Thats it, nothing else is supported.
*** EOF ***



	OK!



*** Output of Markdown.pl ***
(not used anymore)
*** Output of Markdown.pl (parsed) ***
(not used anymore)

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
bai-maruku-0.5.9 tests/unittest/math/inline.md
maruku-0.6.1 tests/unittest/math/inline.md
vanity-1.7.1 vendor/ruby/1.9.1/gems/maruku-0.6.0/tests/unittest/math/inline.md
maruku-0.6.0 tests/unittest/math/inline.md