Sha256: 4c26df11ddfb66060a56df1d99efb2bfb8fccf42388814cc63f4a6123b2b11db
Contents?: true
Size: 730 Bytes
Versions: 3
Compression:
Stored size: 730 Bytes
Contents
*** 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 ] *** EOF *** OK! *** Output of Markdown.pl *** <p>This is not $math$.</p> <p>[ \alpha ]</p> *** Output of Markdown.pl (parsed) *** Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
maruku-0.5.7 | tests/unittest/math/notmath.md |
maruku-0.5.8 | tests/unittest/math/notmath.md |
maruku-0.5.9 | tests/unittest/math/notmath.md |