Go to file
physikerwelt 5713e1966e Fix rendering of underOver
We recently changed the internal treatment of macros
 to include the `\` in the macro names.
The respective code checked if the macro name had the letter 'o'
 at position 0. Now, this is position 1.

* Check for the entire start of over
* Output an error if the macro name does not star with under
  or over
* Remove dead code

Bug: T382196
Change-Id: I8eefd41e27319c8dbb05900ef2581ce4d548d4fe
2024-12-16 12:06:45 +00:00
.phan
i18n Localisation updates from https://translatewiki.net. 2024-12-11 08:25:16 +01:00
maintenance Parse row height specification in multiline environments 2024-11-25 14:22:15 +00:00
mathoid
modules Fix for Math Popup not working in newer version of Popup-Extension 2024-12-03 01:35:25 +00:00
src Fix rendering of underOver 2024-12-16 12:06:45 +00:00
tests Fix rendering of underOver 2024-12-16 12:06:45 +00:00
.eslintignore Add MathJax rendering option 2024-05-24 03:30:05 +00:00
.eslintrc.json
.gitattributes
.gitignore
.gitreview
.phpcs.xml specials: Get global via IContextSource::getConfig 2024-09-17 22:07:39 +02:00
.stylelintrc.json
CODE_OF_CONDUCT.md
composer.json build: Updating mediawiki/mediawiki-codesniffer to 45.0.0 2024-11-02 19:42:41 +00:00
CONTRIBUTING.MD
COPYING
extension.json ext.math.popup: Add mediawiki.user in dependencies 2024-11-03 20:47:03 +01:00
Gruntfile.js
HISTORY
Math.alias.noTranslate.php
Math.alias.php
package-lock.json selenium: Delete unneeded @wdio/dot-reporter npm package 2024-08-30 17:43:47 +02:00
package.json Add npm fix script 2024-11-05 15:12:59 +01:00
popupRestRoutes.json Conditionally register popup RestRoute using ExtensionFunctions 2024-04-07 20:30:04 +00:00
README
ServiceWiring.php Use namespaced classes 2024-10-20 09:27:34 +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
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' ];