instiki/vendor/plugins/maruku/tests/unittest/math/inline.md
Jacques Distler 38ae064b8a Bundle Latest REXML
Sam Ruby has been doing a bang-up job fixing the bugs in REXML.
Who knows when these improvements will trickle down to vendor distributions of Ruby.
In the meantime, let's bundle the latest version of REXML with Instiki.
We check the version number of the bundled REXML against that of the System REXML, and use whichever is later.
2008-01-11 23:53:29 -06:00

3.6 KiB
Raw Blame History

*** 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 ***

Here are some formulas:

  • \alpha
  • x^{n}+y^{n} \neq z^{n}

Thats it, nothing else is supported.

*** 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 ***

Failed tests: [:to_html]

*** 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 *** -----| WARNING | -----

Here are some formulas:

  • α
  • x n+y n≠z n

Thats it, nothing else is supported.

*** 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. *** Output of Markdown.pl ***

Here are some formulas:

  • α
  • x n+y n≠z n

That's it, nothing else is supported.

*** Output of Markdown.pl (parsed) ***

Here are some formulas:

  • α
  • x n + y n ≠ z n

That's it, nothing else is supported.