blob: e56bbdf262050fce5a11223a27e04c4db7a535bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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'] = '';
|