diff options
Diffstat (limited to 'plugins/55/mathjax/conf/default.php')
-rw-r--r-- | plugins/55/mathjax/conf/default.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/55/mathjax/conf/default.php b/plugins/55/mathjax/conf/default.php new file mode 100644 index 0000000..e56bbdf --- /dev/null +++ b/plugins/55/mathjax/conf/default.php @@ -0,0 +1,19 @@ +<?php +/** + * Default settings for the mathjax plugin + * + * @author Mark Liffiton <liffiton@gmail.com> + */ + +$conf['url'] = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.9/MathJax.js?config=TeX-AMS_CHTML.js'; +$conf['config'] = 'MathJax.Hub.Config({ + tex2jax: { + inlineMath: [ ["$","$"], ["\\\\(","\\\\)"] ], + displayMath: [ ["$$","$$"], ["\\\\[","\\\\]"] ], + processEscapes: true + } +});'; +$conf['configfile'] = ''; +$conf['asciimath'] = 0; +$conf['mathtags'] = ''; + |