mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-12 01:08:55 +00:00
8bc23cafb4
Add new special page that displays math images. (Either SVG- or PNG-Images) Change-Id: I6065b474b8197232fcb4e79ae17bb08d9bef3ac4
14 lines
282 B
PHP
14 lines
282 B
PHP
<?php
|
|
/**
|
|
* Aliases for Math
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
*/
|
|
|
|
$specialPageAliases = array();
|
|
|
|
/** English (English) */
|
|
$specialPageAliases['en'] = array(
|
|
'MathShowImage' => array( 'MathShowImage', 'MathShowImage' ) // No need to translate! The PageTitle does not appear.
|
|
); |