Go to file
Moritz Schubotz (physikerwelt) 73c41b4626
Provide static Factory Class for Math related services
Initially we provide one service. More services will come in
the future.

Change-Id: I98a0f5f181f729e123a063dabf3597b5effa55b8
2022-07-22 18:59:11 +02:00
.phan build: Remove phan warning 2021-08-20 04:09:00 +00:00
i18n Localisation updates from https://translatewiki.net. 2022-07-19 08:16:55 +02:00
images
maintenance schema: Move all sql files to sql folder 2022-06-22 18:11:51 +00:00
mathoid
modules Revert "Add wbEntitySelector widget to edit qid in VE" 2022-07-16 17:40:09 +00:00
sql schema: Move all sql files to sql folder 2022-06-22 18:11:51 +00:00
src Provide static Factory Class for Math related services 2022-07-22 18:59:11 +02:00
tests Provide static Factory Class for Math related services 2022-07-22 18:59:11 +02:00
.eslintrc.json eslint: Lint Gruntile.js using server rules 2022-02-07 16:35:42 +00:00
.gitattributes
.gitignore Add /tests/selenium/log/ folder to .gitignore file 2020-10-15 16:21:54 +03:00
.gitreview
.phpcs.xml build: Updating mediawiki/mediawiki-codesniffer to 38.0.0 2021-10-24 07:33:00 +00:00
.stylelintrc.json
CODE_OF_CONDUCT.md
composer.json build: Updating dependencies 2022-05-21 07:23:34 +00:00
CONTRIBUTING.MD Add CONTRIBUTING.MD 2021-04-12 14:23:18 +02:00
COPYING
extension.json Revert "Add wbEntitySelector widget to edit qid in VE" 2022-07-16 17:40:09 +00:00
Gruntfile.js eslint: Lint Gruntile.js using server rules 2022-02-07 16:35:42 +00: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 selenium: Use @wdio/spec-reporter 2022-05-24 14:00:05 +02:00
package.json selenium: Use @wdio/spec-reporter 2022-05-24 14:00:05 +02:00
README
RELEASE-NOTES-3.0.0
ServiceWiring.php Provide static Factory Class for Math related services 2022-07-22 18:59:11 +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' ];