mathematical 1.5.0 → 1.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -0
- data/Rakefile +5 -9
- data/ext/README.md +21 -0
- data/ext/mathematical/CMakeLists.txt +76 -0
- data/ext/mathematical/FindNewerRubies.cmake +292 -0
- data/ext/mathematical/FindPackageHandleStandardArgs.cmake +58 -0
- data/ext/mathematical/extconf.rb +38 -18
- data/ext/mathematical/lasem/AUTHORS +1 -0
- data/ext/mathematical/lasem/COPYING +482 -0
- data/ext/mathematical/lasem/{docs/reference/lasem/lasem-overrides.txt → ChangeLog} +0 -0
- data/ext/mathematical/lasem/MAINTAINERS +3 -0
- data/ext/mathematical/lasem/Makefile.am +34 -0
- data/ext/mathematical/lasem/Makefile.decl +57 -0
- data/ext/mathematical/lasem/NEWS +117 -0
- data/ext/mathematical/lasem/README +28 -0
- data/ext/mathematical/lasem/RELEASING +85 -0
- data/ext/mathematical/lasem/TODO +50 -0
- data/ext/mathematical/lasem/autogen.sh +177 -0
- data/ext/mathematical/lasem/configure.ac +139 -0
- data/ext/mathematical/lasem/docs/Makefile.am +14 -0
- data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +106 -0
- data/ext/mathematical/lasem/docs/reference/Makefile.am +3 -0
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +205 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +75 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +64 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +110 -0
- data/ext/mathematical/lasem/itex2mml/COPYING.itex2MML +3 -0
- data/ext/mathematical/lasem/itex2mml/Makefile.am +37 -0
- data/ext/mathematical/lasem/itex2mml/README.itex2MML +13 -0
- data/ext/mathematical/lasem/lasem.doap +21 -0
- data/ext/mathematical/lasem/m4/introspection.m4 +96 -0
- data/ext/mathematical/lasem/po/ChangeLog +0 -0
- data/ext/mathematical/lasem/po/LINGUAS +28 -0
- data/ext/mathematical/lasem/po/POTFILES.in +195 -0
- data/ext/mathematical/lasem/po/POTFILES.skip +1 -0
- data/ext/mathematical/lasem/po/bs.po +65 -0
- data/ext/mathematical/lasem/po/cs.po +70 -0
- data/ext/mathematical/lasem/po/de.po +68 -0
- data/ext/mathematical/lasem/po/el.po +73 -0
- data/ext/mathematical/lasem/po/es.po +78 -0
- data/ext/mathematical/lasem/po/eu.po +66 -0
- data/ext/mathematical/lasem/po/fr.po +65 -0
- data/ext/mathematical/lasem/po/gl.po +64 -0
- data/ext/mathematical/lasem/po/hu.po +76 -0
- data/ext/mathematical/lasem/po/id.po +69 -0
- data/ext/mathematical/lasem/po/it.po +64 -0
- data/ext/mathematical/lasem/po/lt.po +77 -0
- data/ext/mathematical/lasem/po/lv.po +66 -0
- data/ext/mathematical/lasem/po/nb.po +62 -0
- data/ext/mathematical/lasem/po/oc.po +65 -0
- data/ext/mathematical/lasem/po/pl.po +73 -0
- data/ext/mathematical/lasem/po/pt.po +77 -0
- data/ext/mathematical/lasem/po/pt_BR.po +64 -0
- data/ext/mathematical/lasem/po/ru.po +66 -0
- data/ext/mathematical/lasem/po/sl.po +68 -0
- data/ext/mathematical/lasem/po/sr.po +65 -0
- data/ext/mathematical/lasem/po/sr@latin.po +65 -0
- data/ext/mathematical/lasem/po/sv.po +72 -0
- data/ext/mathematical/lasem/po/tg.po +64 -0
- data/ext/mathematical/lasem/po/tr.po +65 -0
- data/ext/mathematical/lasem/po/zh_CN.po +63 -0
- data/ext/mathematical/lasem/src/Makefile.am +349 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmitex.c +0 -1
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/tests/Makefile.am +34 -0
- data/ext/mathematical/lasem/tests/data/mathml/gtkmathview/README +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/closed.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/color.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-2.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-inline.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-01.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/accents.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/script.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/stack.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/subscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/bmpCursor.bmp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/brushedMetal.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpeg.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpegCursor.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaBridge.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaSteps.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaWalk.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tde.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tiffCursor.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/CNN.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/SVG-1.1-monolithic-fixed.dtd +1622 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/TraitAccess.common.es +672 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/advice.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/beep.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/boing_x.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/clock.mp4 +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud-ps411q4app.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q25s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q65float.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75p.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud444q65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudgsq75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudoddq65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudqllo.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/copyright-documents-19990405.html +89 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/disco.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/excuse_me.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/externalscript.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/heroesLanding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image2_b.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/myimage.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pacman.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/plant.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image0.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image5.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image6.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image7.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image8.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image9.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script1.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script10.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script2.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script3.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script4.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script5.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script6.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script7.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script8.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script9.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/svgRef4.css +4 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/welcome.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/xmltree.xml +4 -0
- data/ext/mathematical/lasem/tests/fuzztest.sh +12 -0
- data/ext/mathematical/lasem/tests/suite.ini +27 -0
- data/ext/mathematical/lasem/tools/change-license +3 -0
- data/ext/mathematical/lasem/tools/charlist.dtd +73 -0
- data/ext/mathematical/lasem/tools/entities-to-c.xsl +1067 -0
- data/ext/mathematical/lasem/tools/fuzzxml +243 -0
- data/ext/mathematical/lasem/tools/unicode.xml +44303 -0
- data/ext/mathematical/lasem_overrides.c +25 -4
- data/ext/mathematical/lasem_overrides.h +5 -0
- data/ext/mathematical/lib/liblasem.dylib +0 -0
- data/ext/mathematical/mtex2MML/CONTRIBUTING.md +22 -0
- data/ext/mathematical/mtex2MML/README.md +143 -0
- data/ext/mathematical/mtex2MML/SUPPORTED.md +1214 -0
- data/ext/mathematical/mtex2MML/appveyor.yml +25 -0
- data/ext/mathematical/mtex2MML/build.ps1 +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +375 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +208 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +1137 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +253 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +148 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +251 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +276 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +10 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +683 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +26 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +1 -0
- data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +94 -0
- data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +10 -0
- data/ext/mathematical/mtex2MML/build/parser.output +117661 -0
- data/ext/mathematical/mtex2MML/deps/strdup/package.json +12 -0
- data/ext/mathematical/mtex2MML/deps/uthash/package.json +26 -0
- data/ext/mathematical/mtex2MML/script/bootstrap +30 -0
- data/ext/mathematical/mtex2MML/script/cibuild +11 -0
- data/ext/mathematical/mtex2MML/script/release +27 -0
- data/ext/mathematical/mtex2MML/src/y.output +117655 -0
- data/ext/mathematical/mtex2MML/tests/debug/mtex2MML_debug.cc +21 -0
- data/ext/mathematical/mtex2MML/tests/deps/file2str/package.json +9 -0
- data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-1.html +86 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-2.html +148 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-3.html +188 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/arrows-2.html +156 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-1.html +45 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/buildrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue490.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue877.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue937.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/sideset-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/stackrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/subarray-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/substack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/mathtip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/texttip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/toggle-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/Newextarrow-1.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-2.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-3.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-5.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathbin-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathinner-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathopenclose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathord-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathpunct-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/backslashed-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/remap-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/color-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/colorbox-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-1.html +37 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-2.html +79 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/fcolorbox-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/issue446.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/namedcolors-1.html +70 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue775.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-2.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-4.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-5.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/left-right-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignedat-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalignno-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html +64 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/leqalignno-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noErrors-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noUndefined-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/above-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atop-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/binom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/cfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/choose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/genfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/issue969.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue375.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue856.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1c.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1d.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/boxes-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/llap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/lower-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/mathstrut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveleft-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveright-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/newline-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/phantom-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/raise-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/rlap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/shove-1.html +19 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/smash-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/spaces-1.html +18 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/strut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/vcenter-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-2.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/hebrew-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/begingroup-1.html +15 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/def-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/let-1.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-3.html +50 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-5.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-6.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-7.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/Bbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/bf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/boldsymbol-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/cal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/frak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/it-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathcal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathfrak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathscr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathtt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/pmb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/rm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/scr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/sf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/text-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textbf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/texttt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/tt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/smallmatrix-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-1.html +120 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-3.html +138 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/amounts-1.html +46 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-1.html +235 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-2.html +159 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/basics-1.html +139 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/bonds-1.html +256 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/environments-1.html +81 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/isotopes-1.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/math-1.html +101 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/special_symbols-1.html +176 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Rule-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Tiny-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/class-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/cssId-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/require-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/style-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/unicode-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/LaTeX-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/bbox-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/boxed-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cancel-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cases-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/displaylines-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/enclose-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/functions-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mathsize-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mod-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/pod-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-2.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/eqref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-2.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/notag-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/binaryops-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/dots-1.html +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-1.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-2.html +31 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-3.html +40 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-4.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-5.html +56 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-6.html +49 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-2.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-3.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-1.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-2.no_tex +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-1.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-2.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue490.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/mathtip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/texttip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/toggle-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/Newextarrow-1.xtex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathbin-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-2.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-2.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1a.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1b.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1c.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-2.xtex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/fcolorbox-1.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/issue446.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1c.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-2a.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/leqalignno-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noErrors-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noUndefined-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1151.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-1.xtex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-1.xtex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-2.xtex +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/shove-1.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/begingroup-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/def-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/let-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1a.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1b.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-3.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-5.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-6.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-7.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-3.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/amounts-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-1.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-2.no_tex +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/basics-1.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/bonds-1.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/environments-1.no_tex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/isotopes-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/math-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/special_symbols-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Rule-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/class-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/cssId-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/require-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/style-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/unicode-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/displaylines-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-2.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/eqref-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1a.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1b.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-3.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-1.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-2.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-3.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-4.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/TODO.md +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/block.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/comments.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/inline.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.html +24 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/brackets.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.html +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.html +27 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/double_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_brackets.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_dollars.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_parens.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/mixed.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/parens.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/single_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html +12 -0
- data/ext/mathematical/mtex2MML/tests/generate.py +244 -0
- data/ext/mathematical/mtex2MML/tests/mathjax_generate.py +72 -0
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +1 -3
- metadata +699 -23
- data/ext/mathematical/lasem/Makefile +0 -1037
- data/ext/mathematical/lasem/config.h +0 -87
- data/ext/mathematical/lasem/docs/Makefile +0 -793
- data/ext/mathematical/lasem/docs/reference/Makefile +0 -735
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile +0 -1029
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +0 -245
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +0 -856
- data/ext/mathematical/lasem/itex2mml/Makefile +0 -742
- data/ext/mathematical/lasem/itex2mml/lex.yy.c +0 -6294
- data/ext/mathematical/lasem/itex2mml/y.tab.c +0 -5796
- data/ext/mathematical/lasem/itex2mml/y.tab.h +0 -378
- data/ext/mathematical/lasem/po/Makefile +0 -413
- data/ext/mathematical/lasem/src/Makefile +0 -1343
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +0 -99
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +0 -26
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +0 -793
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +0 -96
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +0 -1254
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +0 -129
- data/ext/mathematical/lasem/tests/Makefile +0 -776
@@ -0,0 +1,72 @@
|
|
1
|
+
import re, string, os
|
2
|
+
|
3
|
+
PATH = os.path.dirname(os.path.realpath(__file__))
|
4
|
+
MATHJAX_TEST_TEST_DIR = os.path.join(PATH, 'fixtures', 'MathJax')
|
5
|
+
MATHJAX_TEST_TEXT_DIR = os.path.join(MATHJAX_TEST_TEST_DIR, 'LaTeXToMathML-tex')
|
6
|
+
MATHJAX_TEST_OUT_DIR = os.path.join(MATHJAX_TEST_TEST_DIR, 'LaTeXToMathML-out')
|
7
|
+
MAGIC_LINE = "/* EVERYTHING BELOW IS AUTOGENERATED */\n"
|
8
|
+
|
9
|
+
template = string.Template("""void test_mathjax__$sanitized_name(void)
|
10
|
+
{
|
11
|
+
fixture_tex = read_fixture_tex("MathJax/LaTeXToMathML-tex/$name.txt");
|
12
|
+
fixture_mml = read_fixture_mml("MathJax/LaTeXToMathML-out/$name.html");
|
13
|
+
mtex2MML_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
14
|
+
result = mtex2MML_output();
|
15
|
+
|
16
|
+
cl_assert_equal_s(fixture_mml, result);
|
17
|
+
}""")
|
18
|
+
|
19
|
+
fixtures = []
|
20
|
+
xtex_files = []
|
21
|
+
notex_files = []
|
22
|
+
|
23
|
+
txt_count = 0
|
24
|
+
xtex_count = 0
|
25
|
+
notex_count = 0
|
26
|
+
|
27
|
+
regex = False #'environments/alignat-1b'
|
28
|
+
|
29
|
+
for root, dirs, files in os.walk(MATHJAX_TEST_TEXT_DIR):
|
30
|
+
for file in files:
|
31
|
+
name = os.path.basename(root) + "/" + os.path.splitext(file)[0]
|
32
|
+
if file.endswith(".txt"):
|
33
|
+
if regex:
|
34
|
+
if re.search(regex, name):
|
35
|
+
fixtures.append(name)
|
36
|
+
else:
|
37
|
+
fixtures.append(name)
|
38
|
+
txt_count += 1
|
39
|
+
elif file.endswith(".xtex"):
|
40
|
+
xtex_files.append(name)
|
41
|
+
xtex_count += 1
|
42
|
+
elif file.endswith(".no_tex"):
|
43
|
+
notex_files.append(name)
|
44
|
+
notex_count += 1
|
45
|
+
|
46
|
+
test_file = open(os.path.join(PATH, "mathjax.c"),"r+")
|
47
|
+
test_file_lines = test_file.readlines()
|
48
|
+
test_file.seek(0)
|
49
|
+
|
50
|
+
autogenerated_index = test_file_lines.index(MAGIC_LINE)
|
51
|
+
test_file_lines = test_file_lines[:autogenerated_index + 1]
|
52
|
+
|
53
|
+
for fixture_name in fixtures:
|
54
|
+
sanitized = fixture_name.replace('-', '').replace('/', '')
|
55
|
+
test_file_lines.append("\n" + template.substitute(sanitized_name=sanitized, name=fixture_name) + "\n")
|
56
|
+
|
57
|
+
for line in test_file_lines:
|
58
|
+
test_file.write(line)
|
59
|
+
|
60
|
+
test_file.truncate()
|
61
|
+
test_file.close()
|
62
|
+
|
63
|
+
total = float(txt_count + xtex_count)
|
64
|
+
coverage = "{0:.2f}".format((txt_count / total) * 100)
|
65
|
+
skipped_files = "\n * ".join(xtex_files)
|
66
|
+
incomplete_files = "\n * ".join(notex_files)
|
67
|
+
|
68
|
+
if xtex_count > 0:
|
69
|
+
print("\nNot doing the following {0} MathJax tests (because they're non-standard):\n\n * {1}".format(notex_count, incomplete_files))
|
70
|
+
print("\n\nSkipping the following MathJax tests:\n\n * {0}".format(skipped_files))
|
71
|
+
print("\n\n*** You did {0} and skipped {1}: {2}% coverage ***".format(txt_count, xtex_count, coverage))
|
72
|
+
print("\n\n*** Tests last fetched: 3e882fd386 ***\n\n")
|
data/lib/mathematical/version.rb
CHANGED
data/mathematical.gemspec
CHANGED
@@ -15,9 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
|
16
16
|
spec.files = %w(LICENSE.txt README.md Rakefile mathematical.gemspec)
|
17
17
|
spec.files += Dir.glob('lib/**/*.rb')
|
18
|
-
spec.files += Dir
|
19
|
-
spec.files += Dir.glob('ext/**/extconf.rb')
|
20
|
-
spec.files += Dir.glob('ext/**/Makefile')
|
18
|
+
spec.files += Dir['ext/**/*'].reject { |f| f =~ /\.svg$|\.mml$|\.png$|\.o$/ }
|
21
19
|
spec.test_files = Dir.glob('test/**/*')
|
22
20
|
spec.require_paths = %w(lib ext)
|
23
21
|
spec.extensions = ['ext/mathematical/extconf.rb']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mathematical
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-enum
|
@@ -121,28 +121,73 @@ files:
|
|
121
121
|
- LICENSE.txt
|
122
122
|
- README.md
|
123
123
|
- Rakefile
|
124
|
+
- ext/README.md
|
125
|
+
- ext/mathematical/CMakeLists.txt
|
126
|
+
- ext/mathematical/FindNewerRubies.cmake
|
127
|
+
- ext/mathematical/FindPackageHandleStandardArgs.cmake
|
124
128
|
- ext/mathematical/cairo_callbacks.c
|
125
129
|
- ext/mathematical/cairo_callbacks.h
|
126
130
|
- ext/mathematical/extconf.rb
|
127
|
-
- ext/mathematical/lasem/
|
128
|
-
- ext/mathematical/lasem/
|
129
|
-
- ext/mathematical/lasem/
|
130
|
-
- ext/mathematical/lasem/
|
131
|
-
- ext/mathematical/lasem/
|
132
|
-
- ext/mathematical/lasem/
|
133
|
-
- ext/mathematical/lasem/
|
134
|
-
- ext/mathematical/lasem/
|
131
|
+
- ext/mathematical/lasem/AUTHORS
|
132
|
+
- ext/mathematical/lasem/COPYING
|
133
|
+
- ext/mathematical/lasem/ChangeLog
|
134
|
+
- ext/mathematical/lasem/MAINTAINERS
|
135
|
+
- ext/mathematical/lasem/Makefile.am
|
136
|
+
- ext/mathematical/lasem/Makefile.decl
|
137
|
+
- ext/mathematical/lasem/NEWS
|
138
|
+
- ext/mathematical/lasem/README
|
139
|
+
- ext/mathematical/lasem/RELEASING
|
140
|
+
- ext/mathematical/lasem/TODO
|
141
|
+
- ext/mathematical/lasem/autogen.sh
|
142
|
+
- ext/mathematical/lasem/configure.ac
|
143
|
+
- ext/mathematical/lasem/docs/Makefile.am
|
144
|
+
- ext/mathematical/lasem/docs/lasem-render-0.6.1
|
145
|
+
- ext/mathematical/lasem/docs/reference/Makefile.am
|
146
|
+
- ext/mathematical/lasem/docs/reference/lasem/Makefile.am
|
147
|
+
- ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml
|
148
|
+
- ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml
|
135
149
|
- ext/mathematical/lasem/docs/reference/lasem/lasem-sections.txt
|
136
|
-
- ext/mathematical/lasem/
|
150
|
+
- ext/mathematical/lasem/docs/reference/lasem/lasem.types
|
151
|
+
- ext/mathematical/lasem/itex2mml/COPYING.itex2MML
|
152
|
+
- ext/mathematical/lasem/itex2mml/Makefile.am
|
153
|
+
- ext/mathematical/lasem/itex2mml/README.itex2MML
|
137
154
|
- ext/mathematical/lasem/itex2mml/itex2MML.h
|
138
155
|
- ext/mathematical/lasem/itex2mml/itex2MML.l
|
139
156
|
- ext/mathematical/lasem/itex2mml/itex2MML.y
|
140
|
-
- ext/mathematical/lasem/
|
141
|
-
- ext/mathematical/lasem/itex2mml/y.tab.c
|
142
|
-
- ext/mathematical/lasem/itex2mml/y.tab.h
|
157
|
+
- ext/mathematical/lasem/lasem.doap
|
143
158
|
- ext/mathematical/lasem/lasem.pc.in
|
144
|
-
- ext/mathematical/lasem/
|
145
|
-
- ext/mathematical/lasem/
|
159
|
+
- ext/mathematical/lasem/m4/introspection.m4
|
160
|
+
- ext/mathematical/lasem/po/ChangeLog
|
161
|
+
- ext/mathematical/lasem/po/LINGUAS
|
162
|
+
- ext/mathematical/lasem/po/POTFILES.in
|
163
|
+
- ext/mathematical/lasem/po/POTFILES.skip
|
164
|
+
- ext/mathematical/lasem/po/bs.po
|
165
|
+
- ext/mathematical/lasem/po/cs.po
|
166
|
+
- ext/mathematical/lasem/po/de.po
|
167
|
+
- ext/mathematical/lasem/po/el.po
|
168
|
+
- ext/mathematical/lasem/po/es.po
|
169
|
+
- ext/mathematical/lasem/po/eu.po
|
170
|
+
- ext/mathematical/lasem/po/fr.po
|
171
|
+
- ext/mathematical/lasem/po/gl.po
|
172
|
+
- ext/mathematical/lasem/po/hu.po
|
173
|
+
- ext/mathematical/lasem/po/id.po
|
174
|
+
- ext/mathematical/lasem/po/it.po
|
175
|
+
- ext/mathematical/lasem/po/lt.po
|
176
|
+
- ext/mathematical/lasem/po/lv.po
|
177
|
+
- ext/mathematical/lasem/po/nb.po
|
178
|
+
- ext/mathematical/lasem/po/oc.po
|
179
|
+
- ext/mathematical/lasem/po/pl.po
|
180
|
+
- ext/mathematical/lasem/po/pt.po
|
181
|
+
- ext/mathematical/lasem/po/pt_BR.po
|
182
|
+
- ext/mathematical/lasem/po/ru.po
|
183
|
+
- ext/mathematical/lasem/po/sl.po
|
184
|
+
- ext/mathematical/lasem/po/sr.po
|
185
|
+
- ext/mathematical/lasem/po/sr@latin.po
|
186
|
+
- ext/mathematical/lasem/po/sv.po
|
187
|
+
- ext/mathematical/lasem/po/tg.po
|
188
|
+
- ext/mathematical/lasem/po/tr.po
|
189
|
+
- ext/mathematical/lasem/po/zh_CN.po
|
190
|
+
- ext/mathematical/lasem/src/Makefile.am
|
146
191
|
- ext/mathematical/lasem/src/lasemrender.c
|
147
192
|
- ext/mathematical/lasem/src/lsm.c
|
148
193
|
- ext/mathematical/lasem/src/lsm.h
|
@@ -163,8 +208,8 @@ files:
|
|
163
208
|
- ext/mathematical/lasem/src/lsmdomelement.h
|
164
209
|
- ext/mathematical/lasem/src/lsmdomentities.c
|
165
210
|
- ext/mathematical/lasem/src/lsmdomentities.h
|
166
|
-
- ext/mathematical/lasem/src/lsmdomenumtypes.c
|
167
|
-
- ext/mathematical/lasem/src/lsmdomenumtypes.h
|
211
|
+
- ext/mathematical/lasem/src/lsmdomenumtypes.c.template
|
212
|
+
- ext/mathematical/lasem/src/lsmdomenumtypes.h.template
|
168
213
|
- ext/mathematical/lasem/src/lsmdomimplementation.c
|
169
214
|
- ext/mathematical/lasem/src/lsmdomimplementation.h
|
170
215
|
- ext/mathematical/lasem/src/lsmdomnamednodemap.c
|
@@ -199,8 +244,8 @@ files:
|
|
199
244
|
- ext/mathematical/lasem/src/lsmmathmlencloseelement.h
|
200
245
|
- ext/mathematical/lasem/src/lsmmathmlenums.c
|
201
246
|
- ext/mathematical/lasem/src/lsmmathmlenums.h
|
202
|
-
- ext/mathematical/lasem/src/lsmmathmlenumtypes.c
|
203
|
-
- ext/mathematical/lasem/src/lsmmathmlenumtypes.h
|
247
|
+
- ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template
|
248
|
+
- ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template
|
204
249
|
- ext/mathematical/lasem/src/lsmmathmlerrorelement.c
|
205
250
|
- ext/mathematical/lasem/src/lsmmathmlerrorelement.h
|
206
251
|
- ext/mathematical/lasem/src/lsmmathmlfencedelement.c
|
@@ -282,8 +327,8 @@ files:
|
|
282
327
|
- ext/mathematical/lasem/src/lsmsvgellipseelement.h
|
283
328
|
- ext/mathematical/lasem/src/lsmsvgenums.c
|
284
329
|
- ext/mathematical/lasem/src/lsmsvgenums.h
|
285
|
-
- ext/mathematical/lasem/src/lsmsvgenumtypes.c
|
286
|
-
- ext/mathematical/lasem/src/lsmsvgenumtypes.h
|
330
|
+
- ext/mathematical/lasem/src/lsmsvgenumtypes.c.template
|
331
|
+
- ext/mathematical/lasem/src/lsmsvgenumtypes.h.template
|
287
332
|
- ext/mathematical/lasem/src/lsmsvgfilterblend.c
|
288
333
|
- ext/mathematical/lasem/src/lsmsvgfilterblend.h
|
289
334
|
- ext/mathematical/lasem/src/lsmsvgfiltercolormatrix.c
|
@@ -378,116 +423,332 @@ files:
|
|
378
423
|
- ext/mathematical/lasem/src/lsmtypes.h
|
379
424
|
- ext/mathematical/lasem/src/lsmutils.c
|
380
425
|
- ext/mathematical/lasem/src/lsmutils.h
|
381
|
-
- ext/mathematical/lasem/tests/Makefile
|
426
|
+
- ext/mathematical/lasem/tests/Makefile.am
|
427
|
+
- ext/mathematical/lasem/tests/data/mathml/gtkmathview/README
|
428
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex
|
429
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex
|
430
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03.tex
|
431
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction.tex
|
432
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/integrals/closed.tex
|
433
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex
|
434
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex
|
435
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex
|
436
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex
|
437
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex
|
438
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex
|
439
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/color.tex
|
440
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-2.tex
|
441
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-inline.tex
|
442
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/complex.tex
|
443
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic-inline.tex
|
444
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic.tex
|
445
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-01.tex
|
446
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-02.tex
|
447
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/accents.tex
|
448
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/script.tex
|
449
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/stack.tex
|
450
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/subscript.tex
|
451
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums-inline.tex
|
452
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums.tex
|
453
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript-inline.tex
|
454
|
+
- ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript.tex
|
455
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/bmpCursor.bmp
|
456
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/brushedMetal.jpg
|
457
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpeg.jpg
|
458
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpegCursor.jpg
|
459
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaBridge.jpg
|
460
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaSteps.jpg
|
461
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaWalk.jpg
|
462
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors.tif
|
463
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb.tif
|
464
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb_tile.tif
|
465
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_tile.tif
|
466
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/tde.jpg
|
467
|
+
- ext/mathematical/lasem/tests/data/svg/batik/resources/images/tiffCursor.tif
|
468
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.1/images/image1.jpg
|
469
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-01.jpg
|
470
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-02.jpg
|
471
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/CNN.3gp
|
472
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/SVG-1.1-monolithic-fixed.dtd
|
473
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/TraitAccess.common.es
|
474
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/advice.wav
|
475
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/beep.wav
|
476
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/boing_x.wav
|
477
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/clock.mp4
|
478
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud-ps411q4app.jpg
|
479
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q25s.jpg
|
480
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q65float.jpg
|
481
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75o.jpg
|
482
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75p.jpg
|
483
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75s.jpg
|
484
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud444q65o.jpg
|
485
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudgsq75s.jpg
|
486
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudoddq65o.jpg
|
487
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudqllo.jpg
|
488
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/copyright-documents-19990405.html
|
489
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/disco.jpg
|
490
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.3gp
|
491
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.jpg
|
492
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.mov
|
493
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.3gp
|
494
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.mov
|
495
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/excuse_me.wav
|
496
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/externalscript.js
|
497
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton.jpg
|
498
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton1.jpg
|
499
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton2.jpg
|
500
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton3.jpg
|
501
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton4.jpg
|
502
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/heroesLanding.3gp
|
503
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/image1.jpg
|
504
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/image2_b.jpg
|
505
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/myimage.jpg
|
506
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pacman.wav
|
507
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/plant.jpg
|
508
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image0.jpg
|
509
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image1.jpg
|
510
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image2.jpg
|
511
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image3.jpg
|
512
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image4.jpg
|
513
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image5.jpg
|
514
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image6.jpg
|
515
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image7.jpg
|
516
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image8.jpg
|
517
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image9.jpg
|
518
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script1.js
|
519
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script10.js
|
520
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script2.js
|
521
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script3.js
|
522
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script4.js
|
523
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script5.js
|
524
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script6.js
|
525
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script7.js
|
526
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script8.js
|
527
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/script9.js
|
528
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.3gp
|
529
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.jpg
|
530
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-01.jpg
|
531
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-02.jpg
|
532
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/svgRef4.css
|
533
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/welcome.wav
|
534
|
+
- ext/mathematical/lasem/tests/data/svg/svg1.2/images/xmltree.xml
|
382
535
|
- ext/mathematical/lasem/tests/dom.c
|
383
536
|
- ext/mathematical/lasem/tests/filter.c
|
537
|
+
- ext/mathematical/lasem/tests/fuzztest.sh
|
384
538
|
- ext/mathematical/lasem/tests/lsmtest.c
|
385
539
|
- ext/mathematical/lasem/tests/str.c
|
386
540
|
- ext/mathematical/lasem/tests/suite.c
|
541
|
+
- ext/mathematical/lasem/tests/suite.ini
|
542
|
+
- ext/mathematical/lasem/tools/change-license
|
543
|
+
- ext/mathematical/lasem/tools/charlist.dtd
|
544
|
+
- ext/mathematical/lasem/tools/entities-to-c.xsl
|
545
|
+
- ext/mathematical/lasem/tools/fuzzxml
|
387
546
|
- ext/mathematical/lasem/tools/generate-entity-array.c
|
547
|
+
- ext/mathematical/lasem/tools/unicode.xml
|
388
548
|
- ext/mathematical/lasem_overrides.c
|
389
549
|
- ext/mathematical/lasem_overrides.h
|
550
|
+
- ext/mathematical/lib/liblasem.dylib
|
390
551
|
- ext/mathematical/lib/libmtex2MML.a
|
391
552
|
- ext/mathematical/mathematical.c
|
392
553
|
- ext/mathematical/mathematical.h
|
393
554
|
- ext/mathematical/mtex2MML/CMakeLists.txt
|
555
|
+
- ext/mathematical/mtex2MML/CONTRIBUTING.md
|
556
|
+
- ext/mathematical/mtex2MML/README.md
|
557
|
+
- ext/mathematical/mtex2MML/SUPPORTED.md
|
558
|
+
- ext/mathematical/mtex2MML/appveyor.yml
|
559
|
+
- ext/mathematical/mtex2MML/build.ps1
|
394
560
|
- ext/mathematical/mtex2MML/build/CMakeCache.txt
|
395
561
|
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeCCompiler.cmake
|
396
562
|
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeCXXCompiler.cmake
|
563
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin
|
564
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin
|
397
565
|
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeSystem.cmake
|
398
566
|
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/CMakeCCompilerId.c
|
567
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out
|
568
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp
|
569
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out
|
399
570
|
- ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake
|
571
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log
|
400
572
|
- ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt
|
401
573
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake
|
574
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make
|
402
575
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake
|
576
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make
|
403
577
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake
|
578
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make
|
404
579
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake
|
580
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make
|
405
581
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake
|
582
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make
|
406
583
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake
|
584
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make
|
407
585
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake
|
586
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make
|
408
587
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake
|
588
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make
|
409
589
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake
|
590
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make
|
410
591
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake
|
592
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make
|
411
593
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake
|
594
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make
|
412
595
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake
|
596
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make
|
413
597
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake
|
598
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make
|
414
599
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake
|
600
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make
|
415
601
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake
|
602
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make
|
416
603
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake
|
604
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make
|
417
605
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake
|
606
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make
|
418
607
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake
|
608
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make
|
419
609
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake
|
610
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make
|
420
611
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake
|
612
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make
|
421
613
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake
|
614
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make
|
422
615
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake
|
616
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make
|
423
617
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake
|
618
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make
|
424
619
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake
|
620
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make
|
425
621
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake
|
622
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make
|
426
623
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake
|
624
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make
|
427
625
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake
|
626
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make
|
428
627
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake
|
628
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make
|
429
629
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake
|
630
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make
|
430
631
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake
|
632
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make
|
431
633
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake
|
634
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make
|
432
635
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake
|
636
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make
|
433
637
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake
|
638
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make
|
434
639
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake
|
640
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make
|
435
641
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake
|
642
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make
|
436
643
|
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake
|
644
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make
|
437
645
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake
|
646
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2
|
438
647
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake
|
648
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make
|
439
649
|
- ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake
|
650
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make
|
440
651
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake
|
652
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make
|
441
653
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake
|
654
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make
|
442
655
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake
|
656
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make
|
443
657
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake
|
658
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make
|
444
659
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake
|
660
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make
|
445
661
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake
|
662
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make
|
446
663
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake
|
664
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make
|
447
665
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake
|
666
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make
|
448
667
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake
|
668
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make
|
449
669
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake
|
670
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make
|
450
671
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake
|
672
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make
|
451
673
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake
|
674
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make
|
452
675
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake
|
676
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make
|
453
677
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake
|
678
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make
|
454
679
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake
|
680
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make
|
455
681
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake
|
682
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make
|
456
683
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake
|
684
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make
|
457
685
|
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake
|
686
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make
|
458
687
|
- ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt
|
688
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache
|
459
689
|
- ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake
|
690
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make
|
460
691
|
- ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake
|
692
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make
|
461
693
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake
|
694
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make
|
462
695
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake
|
696
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make
|
697
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make
|
463
698
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt
|
699
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make
|
700
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache
|
464
701
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake
|
702
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make
|
465
703
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake
|
466
704
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake
|
705
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal
|
706
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make
|
707
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make
|
467
708
|
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt
|
709
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make
|
468
710
|
- ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake
|
711
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make
|
469
712
|
- ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake
|
713
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make
|
470
714
|
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake
|
715
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make
|
471
716
|
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake
|
717
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make
|
718
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make
|
472
719
|
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt
|
720
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make
|
473
721
|
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake
|
722
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make
|
474
723
|
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake
|
724
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make
|
725
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make
|
475
726
|
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt
|
727
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make
|
728
|
+
- ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks
|
476
729
|
- ext/mathematical/mtex2MML/build/CTestTestfile.cmake
|
730
|
+
- ext/mathematical/mtex2MML/build/DartConfiguration.tcl
|
477
731
|
- ext/mathematical/mtex2MML/build/Makefile
|
478
732
|
- ext/mathematical/mtex2MML/build/cmake_install.cmake
|
479
733
|
- ext/mathematical/mtex2MML/build/lexer.c
|
480
734
|
- ext/mathematical/mtex2MML/build/libmtex2MML.a
|
735
|
+
- ext/mathematical/mtex2MML/build/libmtex2MML.pc
|
481
736
|
- ext/mathematical/mtex2MML/build/mtex2mml_export.h
|
482
737
|
- ext/mathematical/mtex2MML/build/parser.c
|
483
738
|
- ext/mathematical/mtex2MML/build/parser.h
|
739
|
+
- ext/mathematical/mtex2MML/build/parser.output
|
484
740
|
- ext/mathematical/mtex2MML/cmake/Modules/astyle.cmake
|
741
|
+
- ext/mathematical/mtex2MML/deps/strdup/package.json
|
485
742
|
- ext/mathematical/mtex2MML/deps/strdup/strdup.c
|
486
743
|
- ext/mathematical/mtex2MML/deps/strdup/strdup.h
|
744
|
+
- ext/mathematical/mtex2MML/deps/uthash/package.json
|
487
745
|
- ext/mathematical/mtex2MML/deps/uthash/utarray.h
|
488
746
|
- ext/mathematical/mtex2MML/deps/uthash/uthash.h
|
489
747
|
- ext/mathematical/mtex2MML/deps/uthash/utlist.h
|
490
748
|
- ext/mathematical/mtex2MML/deps/uthash/utstring.h
|
749
|
+
- ext/mathematical/mtex2MML/script/bootstrap
|
750
|
+
- ext/mathematical/mtex2MML/script/cibuild
|
751
|
+
- ext/mathematical/mtex2MML/script/release
|
491
752
|
- ext/mathematical/mtex2MML/src/colors.c
|
492
753
|
- ext/mathematical/mtex2MML/src/colors.h
|
493
754
|
- ext/mathematical/mtex2MML/src/em.c
|
@@ -502,6 +763,7 @@ files:
|
|
502
763
|
- ext/mathematical/mtex2MML/src/string_extras.c
|
503
764
|
- ext/mathematical/mtex2MML/src/string_extras.h
|
504
765
|
- ext/mathematical/mtex2MML/src/win32-shims/unistd.h
|
766
|
+
- ext/mathematical/mtex2MML/src/y.output
|
505
767
|
- ext/mathematical/mtex2MML/tests/array.c
|
506
768
|
- ext/mathematical/mtex2MML/tests/basic.c
|
507
769
|
- ext/mathematical/mtex2MML/tests/clar.c
|
@@ -512,18 +774,291 @@ files:
|
|
512
774
|
- ext/mathematical/mtex2MML/tests/clar/sandbox.h
|
513
775
|
- ext/mathematical/mtex2MML/tests/clar_test.h
|
514
776
|
- ext/mathematical/mtex2MML/tests/cornercases.c
|
777
|
+
- ext/mathematical/mtex2MML/tests/debug/mtex2MML_debug.cc
|
515
778
|
- ext/mathematical/mtex2MML/tests/delimiters.c
|
516
779
|
- ext/mathematical/mtex2MML/tests/deps/file2str/file2str.c
|
517
780
|
- ext/mathematical/mtex2MML/tests/deps/file2str/file2str.h
|
781
|
+
- ext/mathematical/mtex2MML/tests/deps/file2str/package.json
|
518
782
|
- ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.c
|
519
783
|
- ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.h
|
784
|
+
- ext/mathematical/mtex2MML/tests/deps/trim/package.json
|
520
785
|
- ext/mathematical/mtex2MML/tests/deps/trim/trim.c
|
521
786
|
- ext/mathematical/mtex2MML/tests/deps/trim/trim.h
|
522
787
|
- ext/mathematical/mtex2MML/tests/env.c
|
788
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-1.html
|
789
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-2.html
|
790
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-3.html
|
791
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/arrows-2.html
|
792
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-1.html
|
793
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-2.html
|
794
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-1.html
|
795
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-2.html
|
796
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-3.html
|
797
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/buildrel-1.html
|
798
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue490.html
|
799
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue877.html
|
800
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue937.html
|
801
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbrace-1.html
|
802
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbracket-1.html
|
803
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overset-1.html
|
804
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/sideset-1.html
|
805
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/stackrel-1.html
|
806
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/subarray-1.html
|
807
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/substack-1.html
|
808
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbrace-1.html
|
809
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbracket-1.html
|
810
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underset-1.html
|
811
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/mathtip-1.html
|
812
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/texttip-1.html
|
813
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/toggle-1.html
|
814
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/Newextarrow-1.html
|
815
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-1.html
|
816
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-2.html
|
817
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-3.html
|
818
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-4.html
|
819
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-5.html
|
820
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathbin-1.html
|
821
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathinner-1.html
|
822
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1a.html
|
823
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1b.html
|
824
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-2.html
|
825
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathopenclose-1.html
|
826
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathord-1.html
|
827
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathpunct-1.html
|
828
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathrel-1.html
|
829
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/backslashed-1.html
|
830
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-1.html
|
831
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-2.html
|
832
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/remap-1.html
|
833
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/color-1.html
|
834
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/colorbox-1.html
|
835
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-1.html
|
836
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-2.html
|
837
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/fcolorbox-1.html
|
838
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/issue446.html
|
839
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/namedcolors-1.html
|
840
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-1.html
|
841
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-2.html
|
842
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-3.html
|
843
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-1.html
|
844
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-2.html
|
845
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue775.html
|
846
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1a.html
|
847
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1b.html
|
848
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-2.html
|
849
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-3.html
|
850
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-4.html
|
851
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-5.html
|
852
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/left-right-1.html
|
853
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html
|
854
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html
|
855
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html
|
856
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html
|
857
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html
|
858
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html
|
859
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignedat-1.html
|
860
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html
|
861
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalignno-1.html
|
862
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1a.html
|
863
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1b.html
|
864
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html
|
865
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html
|
866
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html
|
867
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html
|
868
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html
|
869
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html
|
870
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html
|
871
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1a.html
|
872
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1b.html
|
873
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2a.html
|
874
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2b.html
|
875
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3a.html
|
876
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3b.html
|
877
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/leqalignno-1.html
|
878
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1a.html
|
879
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1b.html
|
880
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html
|
881
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noErrors-1.html
|
882
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noUndefined-1.html
|
883
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/above-1.html
|
884
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html
|
885
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atop-1.html
|
886
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html
|
887
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/binom-1.html
|
888
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brace-1.html
|
889
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brack-1.html
|
890
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/cfrac-1.html
|
891
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/choose-1.html
|
892
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dbinom-1.html
|
893
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dfrac-1.html
|
894
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1a.html
|
895
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1b.html
|
896
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/genfrac-1.html
|
897
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/issue969.html
|
898
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html
|
899
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tbinom-1.html
|
900
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tfrac-1.html
|
901
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html
|
902
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html
|
903
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue375.html
|
904
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue856.html
|
905
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1a.html
|
906
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1b.html
|
907
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1c.html
|
908
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1d.html
|
909
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/boxes-1.html
|
910
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1a.html
|
911
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1b.html
|
912
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/llap-1.html
|
913
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/lower-1.html
|
914
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/mathstrut-1.html
|
915
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveleft-1.html
|
916
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveright-1.html
|
917
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/newline-1.html
|
918
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/phantom-1.html
|
919
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/raise-1.html
|
920
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/rlap-1.html
|
921
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/shove-1.html
|
922
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1a.html
|
923
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1b.html
|
924
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/smash-1.html
|
925
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/spaces-1.html
|
926
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/strut-1.html
|
927
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/vcenter-1.html
|
928
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-1.html
|
929
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-2.html
|
930
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-3.html
|
931
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-4.html
|
932
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/hebrew-1.html
|
933
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/begingroup-1.html
|
934
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/def-1.html
|
935
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/let-1.html
|
936
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-1.html
|
937
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-2.html
|
938
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-3.html
|
939
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-5.html
|
940
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-6.html
|
941
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-7.html
|
942
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/Bbb-1.html
|
943
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/bf-1.html
|
944
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/boldsymbol-1.html
|
945
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/cal-1.html
|
946
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/frak-1.html
|
947
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/it-1.html
|
948
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbb-1.html
|
949
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1a.html
|
950
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1b.html
|
951
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-2.html
|
952
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathcal-1.html
|
953
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathfrak-1.html
|
954
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathit-1.html
|
955
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathrm-1.html
|
956
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathscr-1.html
|
957
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathsf-1.html
|
958
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathtt-1.html
|
959
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mit-1.html
|
960
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/pmb-1.html
|
961
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/rm-1.html
|
962
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/scr-1.html
|
963
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/sf-1.html
|
964
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/text-1.html
|
965
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textbf-1.html
|
966
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textit-1.html
|
967
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textrm-1.html
|
968
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textsf-1.html
|
969
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/texttt-1.html
|
970
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/tt-1.html
|
971
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1a.html
|
972
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1b.html
|
973
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-2.html
|
974
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-3.html
|
975
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-1.html
|
976
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-2.html
|
977
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-1.html
|
978
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-2.html
|
979
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-1.html
|
980
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-2.html
|
981
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/smallmatrix-1.html
|
982
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-1.html
|
983
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-2.html
|
984
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-1.html
|
985
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-2.html
|
986
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-3.html
|
987
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/amounts-1.html
|
988
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-1.html
|
989
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-2.html
|
990
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/basics-1.html
|
991
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/bonds-1.html
|
992
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/environments-1.html
|
993
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/isotopes-1.html
|
994
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/math-1.html
|
995
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/special_symbols-1.html
|
996
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Rule-1.html
|
997
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Tiny-1.html
|
998
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/class-1.html
|
999
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/cssId-1.html
|
1000
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-1.html
|
1001
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-2.html
|
1002
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/require-1.html
|
1003
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/style-1.html
|
1004
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/unicode-1.html
|
1005
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/LaTeX-1.html
|
1006
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/bbox-1.html
|
1007
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/boxed-1.html
|
1008
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cancel-1.html
|
1009
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cases-1.html
|
1010
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/displaylines-1.html
|
1011
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/enclose-1.html
|
1012
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/functions-1.html
|
1013
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-1.html
|
1014
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-2.html
|
1015
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-3.html
|
1016
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mathsize-1.html
|
1017
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mod-1.html
|
1018
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html
|
1019
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/pod-1.html
|
1020
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-1.html
|
1021
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-2.html
|
1022
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-3.html
|
1023
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-1.html
|
1024
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-2.html
|
1025
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-1.html
|
1026
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-2.html
|
1027
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/eqref-1.html
|
1028
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-1.html
|
1029
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-2.html
|
1030
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/notag-1.html
|
1031
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-1.html
|
1032
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-2.html
|
1033
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-3.html
|
1034
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-1.html
|
1035
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-2.html
|
1036
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-3.html
|
1037
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-1.html
|
1038
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-2.html
|
1039
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/binaryops-1.html
|
1040
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/dots-1.html
|
1041
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-1.html
|
1042
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-2.html
|
1043
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html
|
1044
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-1.html
|
1045
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-2.html
|
1046
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-3.html
|
1047
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-4.html
|
1048
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-5.html
|
1049
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-6.html
|
1050
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-1.no_tex
|
1051
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-2.no_tex
|
1052
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-3.no_tex
|
1053
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-1.no_tex
|
1054
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-2.no_tex
|
1055
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-1.no_tex
|
1056
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-2.no_tex
|
523
1057
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/accents-1.txt
|
524
1058
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/accents-2.txt
|
525
1059
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/accents-3.txt
|
526
1060
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/buildrel-1.txt
|
1061
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue490.no_tex
|
527
1062
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue877.txt
|
528
1063
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue937.txt
|
529
1064
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/overbrace-1.txt
|
@@ -536,23 +1071,36 @@ files:
|
|
536
1071
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/underbrace-1.txt
|
537
1072
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/underbracket-1.txt
|
538
1073
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/underset-1.txt
|
1074
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/mathtip-1.no_tex
|
1075
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/texttip-1.no_tex
|
1076
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/toggle-1.no_tex
|
1077
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/Newextarrow-1.xtex
|
539
1078
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/arrows-1.txt
|
540
1079
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/arrows-2.txt
|
541
1080
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/arrows-3.txt
|
542
1081
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/arrows-4.txt
|
543
1082
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/arrows-5.txt
|
1083
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathbin-1.no_tex
|
544
1084
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathinner-1.txt
|
545
1085
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-1a.txt
|
546
1086
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-1b.txt
|
1087
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-2.xtex
|
547
1088
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathopenclose-1.txt
|
548
1089
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathord-1.txt
|
549
1090
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathpunct-1.txt
|
550
1091
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathrel-1.txt
|
551
1092
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/backslashed-1.txt
|
552
1093
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-1.txt
|
1094
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-2.xtex
|
553
1095
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/remap-1.txt
|
554
1096
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/color-1.txt
|
555
1097
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/colorbox-1.txt
|
1098
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1a.xtex
|
1099
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1b.xtex
|
1100
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1c.xtex
|
1101
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-2.xtex
|
1102
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/fcolorbox-1.xtex
|
1103
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/issue446.xtex
|
556
1104
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/namedcolors-1.txt
|
557
1105
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/delimiters/big-1.txt
|
558
1106
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/delimiters/big-2.txt
|
@@ -578,6 +1126,8 @@ files:
|
|
578
1126
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqalignno-1.txt
|
579
1127
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1a.txt
|
580
1128
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1b.txt
|
1129
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1c.no_tex
|
1130
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-2a.no_tex
|
581
1131
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/equation-1.txt
|
582
1132
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/equation-2.txt
|
583
1133
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/gather-1a.txt
|
@@ -590,9 +1140,12 @@ files:
|
|
590
1140
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/issue982-2b.txt
|
591
1141
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/issue982-3a.txt
|
592
1142
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/issue982-3b.txt
|
1143
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/leqalignno-1.xtex
|
593
1144
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/multline-1a.txt
|
594
1145
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/multline-1b.txt
|
595
1146
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/split-1.txt
|
1147
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noErrors-1.no_tex
|
1148
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noUndefined-1.no_tex
|
596
1149
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/frac/above-1.txt
|
597
1150
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/frac/abovewithdelims-1.txt
|
598
1151
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/frac/atop-1.txt
|
@@ -611,6 +1164,8 @@ files:
|
|
611
1164
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/frac/overwithdelims-1.txt
|
612
1165
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/frac/tbinom-1.txt
|
613
1166
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/frac/tfrac-1.txt
|
1167
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1151.no_tex
|
1168
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-1.xtex
|
614
1169
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-2.txt
|
615
1170
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue375.txt
|
616
1171
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue856.txt
|
@@ -618,6 +1173,8 @@ files:
|
|
618
1173
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue901-1b.txt
|
619
1174
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue901-1c.txt
|
620
1175
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue901-1d.txt
|
1176
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-1.xtex
|
1177
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-2.xtex
|
621
1178
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/boxes-1.txt
|
622
1179
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/kern-1a.txt
|
623
1180
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/kern-1b.txt
|
@@ -630,6 +1187,7 @@ files:
|
|
630
1187
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/phantom-1.txt
|
631
1188
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/raise-1.txt
|
632
1189
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/rlap-1.txt
|
1190
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/shove-1.xtex
|
633
1191
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/skip-1a.txt
|
634
1192
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/skip-1b.txt
|
635
1193
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/smash-1.txt
|
@@ -641,6 +1199,16 @@ files:
|
|
641
1199
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/letters/greek-3.txt
|
642
1200
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/letters/greek-4.txt
|
643
1201
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/letters/hebrew-1.txt
|
1202
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/begingroup-1.no_tex
|
1203
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/def-1.no_tex
|
1204
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/let-1.no_tex
|
1205
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1a.no_tex
|
1206
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1b.no_tex
|
1207
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-2.no_tex
|
1208
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-3.no_tex
|
1209
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-5.no_tex
|
1210
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-6.no_tex
|
1211
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-7.no_tex
|
644
1212
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mathvariant/Bbb-1.txt
|
645
1213
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mathvariant/bf-1.txt
|
646
1214
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mathvariant/boldsymbol-1.txt
|
@@ -683,12 +1251,33 @@ files:
|
|
683
1251
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/matrices/smallmatrix-1.txt
|
684
1252
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/matrices/vmatrix-1.txt
|
685
1253
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/matrices/vmatrix-2.txt
|
1254
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-1.no_tex
|
1255
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-2.no_tex
|
1256
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-3.no_tex
|
1257
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/amounts-1.no_tex
|
1258
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-1.no_tex
|
1259
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-2.no_tex
|
1260
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/basics-1.no_tex
|
1261
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/bonds-1.no_tex
|
1262
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/environments-1.no_tex
|
1263
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/isotopes-1.no_tex
|
1264
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/math-1.no_tex
|
1265
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/special_symbols-1.no_tex
|
1266
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Rule-1.no_tex
|
686
1267
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Tiny-1.txt
|
1268
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/class-1.no_tex
|
1269
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/cssId-1.no_tex
|
1270
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-1.no_tex
|
1271
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-2.no_tex
|
1272
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/require-1.no_tex
|
1273
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/style-1.no_tex
|
1274
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/unicode-1.no_tex
|
687
1275
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/LaTeX-1.txt
|
688
1276
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/bbox-1.txt
|
689
1277
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/boxed-1.txt
|
690
1278
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/cancel-1.txt
|
691
1279
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/cases-1.txt
|
1280
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/displaylines-1.xtex
|
692
1281
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/enclose-1.txt
|
693
1282
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/functions-1.txt
|
694
1283
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/limits-1.txt
|
@@ -702,9 +1291,21 @@ files:
|
|
702
1291
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/primes-2.txt
|
703
1292
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/primes-3.txt
|
704
1293
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-1.txt
|
1294
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-2.no_tex
|
705
1295
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/verb-1.txt
|
706
1296
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/verb-2.txt
|
1297
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/eqref-1.no_tex
|
1298
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-1.no_tex
|
1299
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-2.no_tex
|
707
1300
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/notag-1.txt
|
1301
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1a.no_tex
|
1302
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1b.no_tex
|
1303
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-2.no_tex
|
1304
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-3.no_tex
|
1305
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-1.no_tex
|
1306
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-2.no_tex
|
1307
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-3.no_tex
|
1308
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-4.no_tex
|
708
1309
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/roots/root-1.txt
|
709
1310
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/roots/root-2.txt
|
710
1311
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/roots/root-3.txt
|
@@ -721,78 +1322,153 @@ files:
|
|
721
1322
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/symbols/symbols-4.txt
|
722
1323
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/symbols/symbols-5.txt
|
723
1324
|
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/symbols/symbols-6.txt
|
1325
|
+
- ext/mathematical/mtex2MML/tests/fixtures/MathJax/TODO.md
|
1326
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.html
|
724
1327
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.txt
|
1328
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.html
|
725
1329
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.txt
|
1330
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.html
|
726
1331
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.txt
|
1332
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.html
|
727
1333
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.txt
|
1334
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.html
|
728
1335
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.txt
|
1336
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.html
|
729
1337
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.txt
|
1338
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.html
|
730
1339
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.txt
|
1340
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.html
|
731
1341
|
- ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.txt
|
1342
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.html
|
732
1343
|
- ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.txt
|
1344
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.html
|
733
1345
|
- ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.txt
|
1346
|
+
- ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.html
|
734
1347
|
- ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.txt
|
1348
|
+
- ext/mathematical/mtex2MML/tests/fixtures/basic/block.html
|
735
1349
|
- ext/mathematical/mtex2MML/tests/fixtures/basic/block.txt
|
1350
|
+
- ext/mathematical/mtex2MML/tests/fixtures/basic/comments.html
|
736
1351
|
- ext/mathematical/mtex2MML/tests/fixtures/basic/comments.txt
|
1352
|
+
- ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html
|
737
1353
|
- ext/mathematical/mtex2MML/tests/fixtures/basic/filter.txt
|
1354
|
+
- ext/mathematical/mtex2MML/tests/fixtures/basic/inline.html
|
738
1355
|
- ext/mathematical/mtex2MML/tests/fixtures/basic/inline.txt
|
1356
|
+
- ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.html
|
739
1357
|
- ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.txt
|
1358
|
+
- ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html
|
740
1359
|
- ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.txt
|
1360
|
+
- ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.html
|
741
1361
|
- ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.txt
|
1362
|
+
- ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.html
|
742
1363
|
- ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.txt
|
1364
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/brackets.html
|
1365
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.html
|
743
1366
|
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.txt
|
1367
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.html
|
744
1368
|
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.txt
|
1369
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/double_dollar.html
|
745
1370
|
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping.txt
|
1371
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_brackets.html
|
1372
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_dollars.html
|
1373
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_parens.html
|
1374
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/mixed.html
|
1375
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/parens.html
|
1376
|
+
- ext/mathematical/mtex2MML/tests/fixtures/delimiters/single_dollar.html
|
1377
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.html
|
746
1378
|
- ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.txt
|
1379
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.html
|
747
1380
|
- ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.txt
|
1381
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.html
|
748
1382
|
- ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.txt
|
1383
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.html
|
749
1384
|
- ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.txt
|
1385
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.html
|
750
1386
|
- ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.txt
|
1387
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.html
|
751
1388
|
- ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.txt
|
1389
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.html
|
752
1390
|
- ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.txt
|
1391
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.html
|
753
1392
|
- ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.txt
|
1393
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.html
|
754
1394
|
- ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.txt
|
1395
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.html
|
755
1396
|
- ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.txt
|
1397
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.html
|
756
1398
|
- ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.txt
|
1399
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.html
|
757
1400
|
- ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.txt
|
1401
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.html
|
758
1402
|
- ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.txt
|
1403
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.html
|
759
1404
|
- ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.txt
|
1405
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.html
|
760
1406
|
- ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.txt
|
1407
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.html
|
761
1408
|
- ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.txt
|
1409
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.html
|
762
1410
|
- ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.txt
|
1411
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.html
|
763
1412
|
- ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.txt
|
1413
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.html
|
764
1414
|
- ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.txt
|
1415
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.html
|
765
1416
|
- ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.txt
|
1417
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.html
|
766
1418
|
- ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.txt
|
1419
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.html
|
767
1420
|
- ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.txt
|
1421
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.html
|
768
1422
|
- ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.txt
|
1423
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.html
|
769
1424
|
- ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.txt
|
1425
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.html
|
770
1426
|
- ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.txt
|
1427
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.html
|
771
1428
|
- ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.txt
|
1429
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.html
|
772
1430
|
- ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.txt
|
1431
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.html
|
773
1432
|
- ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.txt
|
1433
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.html
|
774
1434
|
- ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.txt
|
1435
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.html
|
775
1436
|
- ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.txt
|
1437
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.html
|
776
1438
|
- ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.txt
|
1439
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.html
|
777
1440
|
- ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.txt
|
1441
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.html
|
778
1442
|
- ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.txt
|
1443
|
+
- ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.html
|
779
1444
|
- ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.txt
|
1445
|
+
- ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.html
|
780
1446
|
- ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.txt
|
1447
|
+
- ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html
|
781
1448
|
- ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.txt
|
782
1449
|
- ext/mathematical/mtex2MML/tests/fixtures/maliciousness/excess_parsing.txt
|
1450
|
+
- ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html
|
783
1451
|
- ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.txt
|
1452
|
+
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.html
|
784
1453
|
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.txt
|
1454
|
+
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.html
|
785
1455
|
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.txt
|
1456
|
+
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.html
|
786
1457
|
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.txt
|
1458
|
+
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.html
|
787
1459
|
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.txt
|
1460
|
+
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.html
|
788
1461
|
- ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.txt
|
1462
|
+
- ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html
|
789
1463
|
- ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.txt
|
790
1464
|
- ext/mathematical/mtex2MML/tests/functions.c
|
1465
|
+
- ext/mathematical/mtex2MML/tests/generate.py
|
791
1466
|
- ext/mathematical/mtex2MML/tests/helpers.c
|
792
1467
|
- ext/mathematical/mtex2MML/tests/helpers.h
|
793
1468
|
- ext/mathematical/mtex2MML/tests/main.c
|
794
1469
|
- ext/mathematical/mtex2MML/tests/maliciousness.c
|
795
1470
|
- ext/mathematical/mtex2MML/tests/mathjax.c
|
1471
|
+
- ext/mathematical/mtex2MML/tests/mathjax_generate.py
|
796
1472
|
- ext/mathematical/mtex2MML/tests/numbered_equations.c
|
797
1473
|
- ext/mathematical/mtex2MML/tests/performance.c
|
798
1474
|
- lib/mathematical.rb
|