Go to file
Umherirrender 94ec268cb8 tests: Use correct expect message function in MathWikibaseConnectorTest
expectException needs expectExceptionMessage to be useful

Change-Id: Ic0b9d2e9ab05e958d86082886f1cef3f213919ad
2023-07-10 20:41:57 +02:00
.phan
i18n Localisation updates from https://translatewiki.net. 2023-07-10 09:38:21 +02:00
images
maintenance Add New TexUtil-Reference which also has Chem 2023-02-06 16:30:25 +01:00
mathoid
modules Fix ContextItem documentation 2023-07-10 14:33:51 +01:00
sql
src Add WAN Cache for native MathML rendering 2023-06-19 23:04:08 +02:00
tests tests: Use correct expect message function in MathWikibaseConnectorTest 2023-07-10 20:41:57 +02:00
.eslintignore Add tests for more TeX statements 2022-12-28 11:34:45 +01:00
.eslintrc.json build: Updating npm dependencies 2023-03-29 21:24:34 +00:00
.gitattributes
.gitignore Expand texvcjs comparison test 2022-12-30 19:53:31 +01:00
.gitreview
.phpcs.xml
.stylelintrc.json
CODE_OF_CONDUCT.md
composer.json build: Updating dependencies 2023-04-29 06:56:04 +00:00
CONTRIBUTING.MD
COPYING
extension.json Introduce MathInternalRestbaseURL setting. 2023-05-30 09:48:03 +00:00
Gruntfile.js Fix significant typo in grammar 2022-12-30 16:58:39 +01:00
HISTORY
Math.alias.noTranslate.php
Math.alias.php
package-lock.json build: Updating npm dependencies 2023-06-02 14:27:02 +00:00
package.json build: Updating npm dependencies 2023-06-02 14:27:02 +00:00
README Update reference to tests/phpunit/phpunit.php 2023-07-02 18:27:24 +02:00
RELEASE-NOTES-3.0.0
ServiceWiring.php

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' ];