We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input:
<mml:mmultiscripts> <mml:mi>K</mml:mi> <mml:mrow/> <mml:mrow/> <mml:mprescripts/> <mml:mtext>Req</mml:mtext> <mml:mrow/> </mml:mmultiscripts>
Current output:
{}^{}_{}{}{K}^{}_{}
Target output (using katexify.xsl):
{}^{}_{\htmlClass{override-text}{\text{Req}}}{}{K}^{}_{}
I propose that instead of:
<xsl:variable name="pre" select=".//(*:mn|*:mrow)[preceding-sibling::*:mprescripts]"/> <xsl:variable name="post" select=".//(*:mn|*:mrow)[following-sibling::*:mprescripts] except $base"/>
we use:
<xsl:variable name="pre" select="*[preceding-sibling::*:mprescripts]"/> <xsl:variable name="post" select="*[following-sibling::*:mprescripts] except $base"/>
The text was updated successfully, but these errors were encountered:
This code was committed by @pmarkwart in 301d5ab. If he agrees with this change, you can commit this and we check the test results.
Sorry, something went wrong.
Dew it!
mmultiscripts, #29 (original commit by gimsieke)
954ea28
No branches or pull requests
Input:
Current output:
{}^{}_{}{}{K}^{}_{}
Target output (using katexify.xsl):
{}^{}_{\htmlClass{override-text}{\text{Req}}}{}{K}^{}_{}
I propose that instead of:
we use:
The text was updated successfully, but these errors were encountered: