Changes between Version 5 and Version 6 of AsciiMathMacro
- Timestamp:
- Oct 18, 2016, 10:18:38 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AsciiMathMacro
v5 v6 6 6 7 7 This macro allows equations to be written in a simple text format using a subset of the ASCIIMathML syntax. When the page is requested, the 8 ASCII text is transformed into [http://en.wikipedia.org/wiki/MathML MathML], which can be rendered in any capable browser: Firefox for sure, IE with the !MathPlayer plugin, maybe Opera. 8 ASCII text is transformed into [wikipedia:MathML MathML], which can be rendered in any capable browser: Firefox for sure, IE with the !MathPlayer plugin, maybe Opera. 9 10 To create a MathML representation of the Pythagorean theorem: 11 {{{ 12 {{{#!ASCIIMath 13 a^2 + b^2 = c^2 14 }}} 15 }}} 16 17 and the resulting wiki page's source should now contain properly formatted MathML code for display: 18 19 [[Image(pythagorean.png)]] 20 21 For more information about formatting the ASCII code describing the equation, see the [http://www1.chapman.edu/~jipsen/mathml/asciimath.html ASCIIMathML documentation]. Some items might not display exactly as shown. 9 22 10 23 No other executables, modules, or plugins are necessary for this to work. 11 24 12 25 See [https://github.com/favalex/python-asciimathml] for more info. 13 14 This code is licensed under GNU GPL Version 3.15 26 16 27 == Bugs/Feature Requests … … 32 43 You can check out AsciiMathMacro from [/svn/asciimathmacro here] using Subversion, or [source:asciimathmacro browse the source] with Trac. 33 44 34 == Example35 36 To create a MathML representation of the Pythagorean theorem:37 {{{38 {{{#!ASCIIMath39 a^2 + b^2 = c^240 }}}41 }}}42 43 and the resulting wiki page's source should now contain properly formatted MathML code for display.44 45 For more information about formatting the ASCII code describing the equation, see the [http://www1.chapman.edu/~jipsen/mathml/asciimath.html ASCIIMathML documentation]. Some items might not display exactly as shown.46 47 45 == Recent Changes 48 46