1<?php
2/**
3 * Default Values for Options of the KaTeX Plugin
4 *
5 * @license GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
6 * @author  H.-H. PENG (Hsins) <hsinspeng@gmail.com>
7 */
8
9$conf['cdn-provider']       = 'self-hosted';
10$conf['extension-copy-tex'] = 1;
11$conf['extension-mhchem']   = 1;
12$conf['option-output']      = 'htmlAndMathml';
13$conf['option-delimiters']  = '
14{ "left": "$$", "right": "$$", "display": true }
15{ "left": "$", "right": "$", "display": false }
16{ "left": "\\(", "right": "\\)", "display": false }
17{ "left": "\\[", "right": "\\]", "display": true }';
18$conf['option-ignored-tags']    = 'script, noscript, style, textarea, pre, code, option';
19$conf['option-ignored-classes'] = '';
20$conf['option-throwonerror']    = 1;
21$conf['option-error-color']     = '#CC0000';
22$conf['option-macros']          = '
23{ "command": "\\NN", "expansion": "\\mathbb{N}" }
24{ "command": "\\ZZ", "expansion": "\\mathbb{Z}" }
25{ "command": "\\QQ", "expansion": "\\mathbb{Q}" }
26{ "command": "\\RR", "expansion": "\\mathbb{R}" }
27{ "command": "\\CC", "expansion": "\\mathbb{C}" }';
28