Go to file
DannyS712 b3252601a3 Remove unused non-global $wgUser in wfTest
Bug: T248550
Change-Id: I994bd6158012461efbb238c7a869fa8e642bca96
2020-09-11 18:34:23 +00:00
.phan build: Bump phan to 0.10.2, remove taint-check 2020-05-31 17:47:02 +02:00
db
i18n Localisation updates from https://translatewiki.net. 2020-09-11 09:40:09 +02:00
images
maintenance Fix PSR12.Properties.ConstantVisibility.NotFound 2020-06-05 00:17:18 +00:00
mathoid
modules Fix script to exclude duplicate classes and regenerate math symbols 2020-06-16 16:01:27 +01:00
src i18n: Fix typo 'occured' 2020-09-10 18:08:54 +01:00
tests Remove unused non-global $wgUser in wfTest 2020-09-11 18:34:23 +00:00
.eslintrc.json build: Update eslint-config-wikimedia to 0.16.1 2020-06-16 15:59:33 +01:00
.gitattributes
.gitignore build: Upgrade eslint-config-wikimedia from 0.10.0 to 0.11.0 2019-04-03 15:29:36 -07:00
.gitreview
.phpcs.xml Fix PSR12.Properties.ConstantVisibility.NotFound 2020-06-05 00:17:18 +00:00
.stylelintrc.json
CODE_OF_CONDUCT.md
composer.json build: Updating mediawiki/minus-x to 1.1.0 2020-06-09 05:49:01 +00:00
COPYING
extension.json Bump required MW version to >= 1.35 2020-06-15 21:53:21 +01:00
Gruntfile.js build: Update eslint-config-wikimedia to 0.16.1 2020-06-16 15:59:33 +01:00
HISTORY
Math.alias.noTranslate.php Add special page and API endpoint that show information from math Wikibase items 2019-11-14 23:42:35 +09:00
Math.alias.php Add Serbian aliases 2019-05-13 03:36:53 +02:00
Math.php Fix escaping issues and a series of unrelated code cleanups 2020-03-21 14:53:15 +00:00
MathLaTeXML.php build: Bump phan to 0.10.2, remove taint-check 2020-05-31 17:47:02 +02:00
package-lock.json build: Updating grunt to 1.2.1 2020-07-18 16:11:06 +00:00
package.json build: Updating grunt to 1.2.1 2020-07-18 16:11:06 +00:00
README
RELEASE-NOTES-3.0.0
ServiceWiring.php Add MathCheckerFactory Service 2020-05-27 07:29:49 +02:00

The version for MediaWiki 1.31+ has some changes since previous versions:

By default the math rendering service from the Wikimedia Foundation located at
https://wikimedia.org/api/rest_v1/
will be used for math rendering.
Therefore php-curl is required.
cf. https://www.mediawiki.org/wiki/Manual:CURL

Consult https://www.mediawiki.org/wiki/Extension:Math for further information and advanced settings.

Attributes of the <math /> element:
attribute "display":
possible values: "inline", "block" or "inline-displaystyle" (default)

"display" reproduces the old texvc behavior:
The equation is rendered with large height operands (texvc used $$ $tex $$ to render)
but the equation printed to the current line of the output and not centered in a new line.
In Wikipedia users use :<math>$tex</math> to move the math element closer to the center.

"inline" renders the equation in with small height operands by adding {\textstyle $tex } to the
users input ($tex). The equation is displayed in the current text line.

"inline-displaystyle" renders the equation in with large height operands centered in a new line by adding
{\displaystyle $tex } to the user input ($tex).

For testing your installation run
php tests/phpunit/phpunit.php extensions/Math/tests/
from your MediaWiki home path.

== Logging ==
The math extension supports PSR-3 logging:
Configuration can be dona via
$wgDebugLogGroups['Math'] = [ 'level' => 'info', 'destination' => '/path/to/file.log' ];