mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-12 01:08:55 +00:00
bc52c77d24
* Use string constants instead of integers * Derive new names from old via conversion of constant naming convention to CamelCase. * Replace old constant string e.g. 'MW_MATH_ABC_DEF' with new string 'abcDef' * Replace old constant value with new string. * Tests to demonstrates what is actually done. * Rename constants Bug: T106630 Bug: T106631 Bug: T87941 Change-Id: I6d1094ece79e912d9ddbef6681a25196c7a6e801
12 lines
482 B
Plaintext
12 lines
482 B
Plaintext
Change notes from older releases. For current info see RELEASE-NOTES-3.0.0.
|
|
|
|
== Math 2.0 ==
|
|
|
|
=== Configuration changes in 2.0 ===
|
|
* $wgLaTeXMLUrl was renamed to $wgMathLaTeXMLUrl
|
|
* $wgLaTeXMLTimeout was renamed to $wgMathLaTeXMLTimeout
|
|
* $wgMathValidModes is introduced:
|
|
It determines the selectable math rendering modes MW_MATH_(PNG|MATHML|...) in user preferences.
|
|
* $wgUseLaTeXML becomes unnecessary use $wgMathValidModes[] = 'latexml';
|
|
to enable the LaTeXML rendering mode.
|