How can I make the linear height of equations in MediaWiki equal the speed of regular text (to force the flow)?

I would like to use Notes MediaWiki with the Math extension to display equations, but the equations break the uniform line height when nested inside paragraphs. Is there a way to make it equal to normal text?

+3


source to share


1 answer


I found that using MathJAX, the client side <math>

rendering implementation makes it very pretty with equal line height. I have set the following to LocalSettings.php

:



$wgUseMathJax = true;
$wgDefaultUserOptions['math'] = MW_MATH_MATHJAX;

      

+1


source







All Articles