diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2021-05-27 15:06:37 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2021-05-27 15:06:37 +0000 |
| commit | 79979e5d4aeb3dd4088c513faa3e5d22e2a3bf12 (patch) | |
| tree | 7fdb63890fe2c06806bc8a6151c8f22b79edc2a0 /docutils/test/functional | |
| parent | f8a1109458bbe0c12bad5ac105510f733549bab3 (diff) | |
| download | docutils-79979e5d4aeb3dd4088c513faa3e5d22e2a3bf12.tar.gz | |
MathML: refactor and extend.
New method math.extend(), dictionary-like access to attributes.
Update/Correct list of operators/functions with limits above/below in display formulas.
Add support for:
- more matrix environments,
- more fraction commands,
- delimiter-size commands,
- limits/nolimits commands,
- phantom and boxed commands,
- layout style commands.
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8758 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/functional')
| -rw-r--r-- | docutils/test/functional/expected/math_output_mathml.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docutils/test/functional/expected/math_output_mathml.html b/docutils/test/functional/expected/math_output_mathml.html index 11eb52fe4..aebcc3b35 100644 --- a/docutils/test/functional/expected/math_output_mathml.html +++ b/docutils/test/functional/expected/math_output_mathml.html @@ -152,11 +152,11 @@ For example, the following sum and integral with limits:</p> <mtable class="align" displaystyle="true"> <mtr> <mtd> - <munderover> - <mo movablelimits="true">∫</mo> + <msubsup> + <mo>∫</mo> <mn>0</mn> <mn>1</mn> - </munderover> + </msubsup> <msup> <mi>x</mi> <mi>n</mi> @@ -383,14 +383,14 @@ physical system changes in time.</p> <mo>(</mo> <mfrac> <mrow> - <munderover> - <mo movablelimits="true">∫</mo> + <msubsup> + <mo>∫</mo> <mrow> <mo>−</mo> <mo>∞</mo> </mrow> <mo>∞</mo> - </munderover> + </msubsup> <mi>s</mi> <mo stretchy="false">(</mo> <mi>x</mi> @@ -410,14 +410,14 @@ physical system changes in time.</p> <mi>x</mi> </mrow> <mrow> - <munderover> - <mo movablelimits="true">∫</mo> + <msubsup> + <mo>∫</mo> <mrow> <mo>−</mo> <mo>∞</mo> </mrow> <mo>∞</mo> - </munderover> + </msubsup> <mi>s</mi> <mo stretchy="false">(</mo> <mi>x</mi> |
