From 9141a9e5ed743e61020cfc682c119d5908953965 Mon Sep 17 00:00:00 2001 From: "physikerwelt (Moritz Schubotz)" Date: Mon, 3 Nov 2014 01:07:36 +0100 Subject: [PATCH] Remove Undesired spaces after math expressions The linebreak after the math fallback image caused the additional space. Bug: 72806 Change-Id: Id7117f84ddb4cbe2eb4d6b8abeecf38b4f7e3c6d --- MathMathML.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MathMathML.php b/MathMathML.php index b440cf2..6707059 100644 --- a/MathMathML.php +++ b/MathMathML.php @@ -437,7 +437,7 @@ class MathMathML extends MathRenderer { $mml = preg_replace( '/ $this->getClassName(), 'style' => 'display: none;' ), $mml ); - $output .= $this->getFallbackImage( ) . "\n"; + $output .= $this->getFallbackImage( ); $output .= HTML::closeElement( $element ); return $output; }