1<?php
2/**
3 * Default settings for the mathjax plugin
4 *
5 * @author Mark Liffiton <liffiton@gmail.com>
6 */
7
8$conf['url'] = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.9/MathJax.js?config=TeX-AMS_CHTML.js';
9$conf['config'] = 'MathJax.Hub.Config({
10    tex2jax: {
11        inlineMath: [ ["$","$"], ["\\\\(","\\\\)"] ],
12        displayMath: [ ["$$","$$"], ["\\\\[","\\\\]"] ],
13        processEscapes: true
14    }
15});';
16$conf['configfile'] = '';
17$conf['asciimath'] = 0;
18$conf['mathtags'] = '';
19
20