Sha256: 76d83a24719c91974165c2f56cb3ad920f8d914cae841968c5357c070286ed63
Contents?: true
Size: 674 Bytes
Versions: 3
Compression:
Stored size: 674 Bytes
Contents
*** Parameters: *** require 'maruku/ext/math'; {:html_math_engine => 'itex2mml'} *** Markdown input: *** This *is* $a * b * c$ ahem. *** Output of inspect *** md_el(:document, md_par([ "This ", md_em("is"), " ", md_el(:inline_math, [], {:math=>"a * b * c"}), " ahem." ])) *** Output of to_html *** <p>This <em>is</em> <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline" class="maruku-mathml"><semantics><mrow><mi>a</mi><mo>*</mo><mi>b</mi><mo>*</mo><mi>c</mi></mrow><annotation encoding="application/x-tex">a * b * c</annotation></semantics></math> ahem.</p> *** Output of to_latex *** This \emph{is} $a * b * c$ ahem.
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
maruku-0.7.3 | spec/block_docs/math/spaces_after_inline_math.md |
maruku-0.7.2 | spec/block_docs/math/spaces_after_inline_math.md |
maruku-0.7.1 | spec/block_docs/math/spaces_after_inline_math.md |