mathjax-rails-3 3.2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.travis.yml +9 -0
- data/CHANGELOG.md +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +148 -0
- data/Rakefile +6 -0
- data/lib/mathjax/rails/controllers.rb +23 -0
- data/lib/mathjax/rails/helpers.rb +11 -0
- data/lib/mathjax/rails/mime_types.rb +3 -0
- data/lib/mathjax/rails/routes.rb +10 -0
- data/lib/mathjax/rails/version.rb +7 -0
- data/lib/mathjax/rails.rb +5 -0
- data/lib/mathjax-rails-3.rb +1 -0
- data/mathjax-rails-3.gemspec +23 -0
- data/vendor/mathjax/.github/FUNDING.yml +2 -0
- data/vendor/mathjax/.github/ISSUE_TEMPLATE/bug_report.md +54 -0
- data/vendor/mathjax/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/vendor/mathjax/.gitignore +2 -0
- data/vendor/mathjax/.travis.yml +17 -0
- data/vendor/mathjax/CONTRIBUTING.md +314 -0
- data/vendor/mathjax/LICENSE +202 -0
- data/vendor/mathjax/README.md +237 -0
- data/vendor/mathjax/bower.json +11 -0
- data/vendor/mathjax/composer.json +14 -0
- data/vendor/mathjax/es5/a11y/assistive-mml.js +1 -0
- data/vendor/mathjax/es5/a11y/complexity.js +1 -0
- data/vendor/mathjax/es5/a11y/explorer.js +1 -0
- data/vendor/mathjax/es5/a11y/semantic-enrich.js +1 -0
- data/vendor/mathjax/es5/a11y/sre.js +1 -0
- data/vendor/mathjax/es5/adaptors/liteDOM.js +1 -0
- data/vendor/mathjax/es5/core.js +1 -0
- data/vendor/mathjax/es5/input/asciimath.js +1 -0
- data/vendor/mathjax/es5/input/mml/entities.js +1 -0
- data/vendor/mathjax/es5/input/mml/extensions/mml3.js +1 -0
- data/vendor/mathjax/es5/input/mml/extensions/mml3.sef.json +1 -0
- data/vendor/mathjax/es5/input/mml.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/action.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/all-packages.js +34 -0
- data/vendor/mathjax/es5/input/tex/extensions/ams.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/amscd.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/autoload.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/bbox.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/boldsymbol.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/braket.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/bussproofs.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/cancel.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/cases.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/centernot.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/color.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/colortbl.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/colorv2.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/configmacros.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/empheq.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/enclose.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/extpfeil.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/gensymb.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/html.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/mathtools.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/mhchem.js +34 -0
- data/vendor/mathjax/es5/input/tex/extensions/newcommand.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/noerrors.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/noundefined.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/physics.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/require.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/setoptions.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/tagformat.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/textcomp.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/textmacros.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/unicode.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/upgreek.js +1 -0
- data/vendor/mathjax/es5/input/tex/extensions/verb.js +1 -0
- data/vendor/mathjax/es5/input/tex-base.js +1 -0
- data/vendor/mathjax/es5/input/tex-full.js +34 -0
- data/vendor/mathjax/es5/input/tex.js +1 -0
- data/vendor/mathjax/es5/latest.js +1 -0
- data/vendor/mathjax/es5/loader.js +1 -0
- data/vendor/mathjax/es5/mml-chtml.js +1 -0
- data/vendor/mathjax/es5/mml-svg.js +1 -0
- data/vendor/mathjax/es5/node-main.js +1 -0
- data/vendor/mathjax/es5/output/chtml/fonts/tex.js +1 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
- data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- data/vendor/mathjax/es5/output/chtml.js +1 -0
- data/vendor/mathjax/es5/output/svg/fonts/tex.js +1 -0
- data/vendor/mathjax/es5/output/svg.js +1 -0
- data/vendor/mathjax/es5/sre/mathmaps/base.json +29 -0
- data/vendor/mathjax/es5/sre/mathmaps/ca.json +140 -0
- data/vendor/mathjax/es5/sre/mathmaps/da.json +140 -0
- data/vendor/mathjax/es5/sre/mathmaps/de.json +146 -0
- data/vendor/mathjax/es5/sre/mathmaps/en.json +158 -0
- data/vendor/mathjax/es5/sre/mathmaps/es.json +140 -0
- data/vendor/mathjax/es5/sre/mathmaps/fr.json +146 -0
- data/vendor/mathjax/es5/sre/mathmaps/hi.json +146 -0
- data/vendor/mathjax/es5/sre/mathmaps/it.json +146 -0
- data/vendor/mathjax/es5/sre/mathmaps/nb.json +146 -0
- data/vendor/mathjax/es5/sre/mathmaps/nemeth.json +125 -0
- data/vendor/mathjax/es5/sre/mathmaps/nn.json +146 -0
- data/vendor/mathjax/es5/sre/mathmaps/sv.json +146 -0
- data/vendor/mathjax/es5/startup.js +1 -0
- data/vendor/mathjax/es5/tex-chtml-full-speech.js +34 -0
- data/vendor/mathjax/es5/tex-chtml-full.js +34 -0
- data/vendor/mathjax/es5/tex-chtml.js +1 -0
- data/vendor/mathjax/es5/tex-mml-chtml.js +1 -0
- data/vendor/mathjax/es5/tex-mml-svg.js +1 -0
- data/vendor/mathjax/es5/tex-svg-full.js +34 -0
- data/vendor/mathjax/es5/tex-svg.js +1 -0
- data/vendor/mathjax/es5/ui/lazy.js +1 -0
- data/vendor/mathjax/es5/ui/menu.js +1 -0
- data/vendor/mathjax/es5/ui/safe.js +1 -0
- data/vendor/mathjax/package.json +59 -0
- metadata +193 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the gem file manually.