mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-01 02:36:47 +00:00
9b7205599c
This is doing a bulk of the job of creating a service for working with math modes configuration. There's still things to do, like moving math mode names, and perhaps depending on default user options to provide a bit more convenience, but that will be the next step. Change-Id: I1259a93651920f44104f2f5135e3e620c858be8d
81 lines
1.8 KiB
PHP
81 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* MediaWiki math extension
|
|
*
|
|
* @copyright 2002-2012 Tomasz Wegrzanowski, Brion Vibber, Moritz Schubotz and other MediaWiki
|
|
* contributors
|
|
* @license GPL-2.0-or-later
|
|
*
|
|
* Contains everything related to <math> </math> parsing
|
|
* @file
|
|
*/
|
|
|
|
namespace MediaWiki\Extension\Math;
|
|
|
|
use Exception;
|
|
use Html;
|
|
|
|
/**
|
|
* Takes LaTeX fragments and outputs the source directly to the browser
|
|
*
|
|
* @author Tomasz Wegrzanowski
|
|
* @author Brion Vibber
|
|
* @author Moritz Schubotz
|
|
* @ingroup Parser
|
|
*/
|
|
class MathSource extends MathRenderer {
|
|
/**
|
|
* @param string $tex
|
|
* @param array $params
|
|
*/
|
|
public function __construct( $tex = '', $params = [] ) {
|
|
parent::__construct( $tex, $params );
|
|
$this->setMode( MathConfig::MODE_SOURCE );
|
|
}
|
|
|
|
/**
|
|
* Renders TeX by outputting it to the browser in a span tag
|
|
*
|
|
* @return string span tag with TeX
|
|
*/
|
|
public function getHtmlOutput() {
|
|
# No need to render or parse anything more!
|
|
# New lines are replaced with spaces, which avoids confusing our parser (bugs 23190, 22818)
|
|
if ( $this->getMathStyle() == 'display' ) {
|
|
$class = 'mwe-math-fallback-source-display';
|
|
} else {
|
|
$class = 'mwe-math-fallback-source-inline';
|
|
}
|
|
return Html::element( 'span',
|
|
$this->getAttributes(
|
|
'span',
|
|
[
|
|
// the former class name was 'tex'
|
|
// for backwards compatibility we keep this classname
|
|
'class' => $class . ' tex',
|
|
'dir' => 'ltr'
|
|
]
|
|
),
|
|
'$ ' . str_replace( "\n", " ", $this->getTex() ) . ' $'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception always
|
|
* @return never
|
|
*/
|
|
protected function getMathTableName() {
|
|
throw new Exception( 'in math source mode no database caching should happen' );
|
|
}
|
|
|
|
/**
|
|
* No rendering required in plain text mode
|
|
* @return bool
|
|
*/
|
|
public function render() {
|
|
// assume unchanged to avoid unnecessary database access
|
|
$this->changed = false;
|
|
return true;
|
|
}
|
|
}
|