summaryrefslogtreecommitdiffhomepage
path: root/plugin/math
AgeCommit message (Collapse)Author
2018-02-08Allow users to customise MathJax options.Benjamin Tan
Ref. #1856, #2006, #2045. This is a more open approach to allow customisation of all MathJax options instead of select options only.
2017-11-29Allow tex2jax options to be passed into math plugin.John MacFarlane
Closes #2026. This does not change the default behavior of the math plugin, but it allows $ delimiters to be disabled (which is usually what you want, since otherwise normal uses of $ for currency get treated as math delimiters). To use: Reveal.initialize({ math: { tex2jax: { inlineMath: [['\\(','\\)']], skipTags: ['script','noscript','style', 'textarea','pre'] } }, etc. });
2017-04-05replace cdn.mathjax.org with cdnjsChristian Lawson-Perfect
cdn.mathjax.org is shutting down: https://www.mathjax.org/cdn-shutting-down/ This changes the default MathJax URL in the math plugin, as well as references in README.md and test/examples/math.html
2015-07-07Merge pull request #1205 from gothma/mathjax-mdHakim El Hattab
Allow tex parsing in <code> tags
2015-04-16Allow tex parsing in <code> tagsMartin Goth
Just using $ as delimiter in markdown document fails since the markdown parser unknown to the dollar syntax will try to interpret underscores. Putting the $ delimented formula in backticks will cause the markdown parser to put the tex-code with the $ delimiters into a code block. The texcode will then be unchanged. This patch allows for mathJax to interpret and automagically display the tex-formulas.
2015-01-20default to https mathjax #1103Hakim El Hattab
2013-08-18rename math plugin config optionHakim El Hattab
2013-08-16remove pointless .call()Hakim El Hattab
2013-08-13mathjax plugin updates #531Hakim El Hattab
2013-08-13remove unused codeHakim El Hattab
2013-08-12make mathjax host a config option, revamp script loading, fragment examples #531Hakim El Hattab
2013-08-12comments and failesafes for #531Hakim El Hattab
2013-08-12updates to mathjax plugin, incl more examples #531Hakim El Hattab
2013-08-12limit scope of mathjax rerender #531Hakim El Hattab
2013-08-12first version of mathjax plugin #531Hakim El Hattab