1<?php
2/**
3 * 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// CDN Provider
10$meta['cdn-provider'] = array( 'multichoice', '_choices' => array( 'self-hosted', 'bootcdn', 'cdnjs', 'unpkg', 'jsdelivr', 'jshub', 'staticfile' ) );
11
12// KaTeX Extentions
13$meta['extension-copy-tex'] = array( 'onoff' );
14$meta['extension-mhchem']   = array( 'onoff' );
15
16// Rendering Options
17$meta['option-output']          = array( 'multichoice', '_choices' => array( 'html', 'mathml', 'htmlAndMathml' ) );
18$meta['option-delimiters']      = array( '' );
19$meta['option-ignored-tags']    = array( 'string' );
20$meta['option-ignored-classes'] = array( 'string' );
21$meta['option-throwonerror']    = array( 'onoff' );
22$meta['option-error-color']     = array( 'string' );
23$meta['option-macros']          = array( '' );
24