diff options
Diffstat (limited to 'includes/Math.php')
-rw-r--r-- | includes/Math.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/includes/Math.php b/includes/Math.php index cfed9554..871e9fc3 100644 --- a/includes/Math.php +++ b/includes/Math.php @@ -1,6 +1,8 @@ <?php /** * Contain everything related to <math> </math> parsing + * @file + * @ingroup Parser */ /** @@ -8,8 +10,8 @@ * to rasterized PNG and HTML and MathML approximations. An appropriate * rendering form is picked and returned. * - * by Tomasz Wegrzanowski, with additions by Brion Vibber (2003, 2004) - * + * @author Tomasz Wegrzanowski, with additions by Brion Vibber (2003, 2004) + * @ingroup Parser */ class MathRenderer { var $mode = MW_MATH_MODERN; @@ -257,7 +259,7 @@ class MathRenderer { $this->html ); } } - + function _attribs( $tag, $defaults=array(), $overrides=array() ) { $attribs = Sanitizer::validateTagAttributes( $this->params, $tag ); $attribs = Sanitizer::mergeAttributes( $defaults, $attribs ); @@ -297,4 +299,3 @@ class MathRenderer { return $math->render(); } } - |