mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
b5cf0e0b77
* Use the exactly same routines to deliver png images that are used in mathml mode. * Change the output to use mathoids png image rather than the mathml and svg output. * Locally tested on Firefox and Chrome: Depending on the mode either the SVG or the PNG path is used. Bug: T74240 Change-Id: I4b1cac92eb9a02190f316faab6621940951603d5 |
||
---|---|---|
db | ||
i18n | ||
images | ||
maintenance | ||
math | ||
mathoid | ||
modules | ||
src | ||
tests | ||
texvccheck | ||
.eslintrc.json | ||
.gitattributes | ||
.gitignore | ||
.gitreview | ||
.phpcs.xml | ||
.rubocop.yml | ||
.stylelintrc.json | ||
CODE_OF_CONDUCT.md | ||
composer.json | ||
COPYING | ||
extension.json | ||
Gemfile | ||
Gemfile.lock | ||
Gruntfile.js | ||
HISTORY | ||
Makefile | ||
Math.alias.noTranslate.php | ||
Math.alias.php | ||
Math.php | ||
MathInputCheckTexvc.php | ||
MathLaTeXML.php | ||
MathTexvc.php | ||
package.json | ||
Rakefile | ||
README | ||
RELEASE-NOTES-3.0.0 |
This 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 MediWiki home path. == Logging == The math extension supports PSR-3 logging: Configuration can be dona via $wgDebugLogGroups['Math'] = [ 'level' => 'info', 'destination' => '/path/to/file.log' ];