instiki/vendor/plugins/maruku/spec/block_docs/math/math2.md
Jacques Distler 13a522525c REXML is dead. Long live Nokogiri.
Modify Maruku to use Nokogiri instead of REXML.
Produces a 3-fold speedup in the #to_html method.
2011-08-11 20:36:44 -05:00

1.8 KiB
Raw Blame History

*** Parameters: *** require 'maruku/ext/math' {:math_numbered => ['\['], :html_math_engine => 'itex2mml' } *** Markdown input: ***

[ \alpha ]

\begin{equation} \alpha \end{equation}

\begin{equation} \beta \end{equation}

\begin{equation} \gamma \end{equation} *** Output of inspect *** md_el(:document,[ md_el(:equation,[],{:label=>"eq1",:math=>"\t\alpha\n\n",:num=>1},[]), md_el(:equation,[],{:label=>nil,:math=>"\t\alpha\n\n",:num=>nil},[]), md_el(:equation,[],{:label=>nil,:math=>" \beta\n",:num=>nil},[]), md_el(:equation,[],{:label=>nil,:math=>" \gamma ",:num=>nil},[]) ],{},[]) *** Output of to_html ***

(1)α\alpha
α\alpha
β\beta
γ\gamma
*** Output of to_latex *** \begin{equation} \alpha \label{eq1}\end{equation} \begin{displaymath} \alpha \end{displaymath} \begin{displaymath} \beta \end{displaymath} \begin{displaymath} \gamma \end{displaymath} *** Output of to_md ***

*** Output of to_s ***