Go to file
Ed Sanders e1f5f5487f build: Update linters
Change-Id: I19e2482fa377342b15733f5ef0bebe18e3238cef
2023-09-27 16:07:55 +01:00
.phan Add Grammar and Parser Functionalities 2022-10-18 14:16:45 +00:00
i18n Localisation updates from https://translatewiki.net. 2023-09-21 10:16:03 +02:00
images Drop support for MediaWiki core's removed "2006 wikitext editor" 2018-11-06 17:19:43 -08:00
maintenance Implement mhchemParser in PHP 2023-09-16 09:40:14 +02:00
mathoid docs: Update links for Mathoid now it's moved to GitLab 2023-09-12 13:30:09 +01:00
modules build: Update linters 2023-09-27 16:07:55 +01:00
sql schema: Move all sql files to sql folder 2022-06-22 18:11:51 +00:00
src Merge "Use string as return type of MMLutil::addPreOperator" 2023-09-21 11:52:43 +00:00
tests Fix Pilcrow size 2023-09-21 10:28:31 +00:00
.eslintignore build: Update linters 2023-09-27 16:07:55 +01:00
.eslintrc.json build: Update linters 2023-09-27 16:07:55 +01:00
.gitattributes
.gitignore Implement mhchemParser in PHP 2023-09-16 09:40:14 +02:00
.gitreview Whoops, track not trace 2016-10-24 17:02:56 -07:00
.phpcs.xml Implement mhchemParser maintenance in PHP 2023-09-16 07:13:48 +00:00
.stylelintrc.json build: Update linters 2023-09-27 16:07:55 +01:00
CODE_OF_CONDUCT.md Code of Conduct: Update link to use Special:MyLanguage (T202047) 2018-09-06 15:55:07 +00:00
composer.json build: Updating dependencies 2023-04-29 06:56:04 +00:00
CONTRIBUTING.MD docs: Update links for Mathoid now it's moved to GitLab 2023-09-12 13:30:09 +01:00
COPYING
extension.json Merge "Remove references to VisualEditorFullRestbaseURL" 2023-08-25 11:21:39 +00:00
Gruntfile.js build: Update linters 2023-09-27 16:07:55 +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 Korean special page alias 2022-06-30 10:57:32 +09:00
package-lock.json build: Update linters 2023-09-27 16:07:55 +01:00
package.json build: Update linters 2023-09-27 16:07:55 +01:00
README Update reference to tests/phpunit/phpunit.php 2023-07-02 18:27:24 +02:00
RELEASE-NOTES-3.0.0
ServiceWiring.php Avoid try…catch where if…else will do when using LanguageFactory 2022-11-18 21:08:24 +01: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
composer phpunit:entrypoint -- extensions/Math/tests/phpunit/
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' ];