1<?php
2
3require_once(DOKU_INC.'lib/plugins/aceeditor/action.php');
4
5$meta['default'] = array('onoff');
6$meta['highlight'] = array('onoff');
7$meta['wraplimit'] = array('string', '_pattern' => '/^\s*[0-9]*\s*$/');
8$meta['colortheme'] = array('multichoice', '_choices' => array(
9    'ambiance',
10    'chaos',
11    'chrome',
12    'clouds',
13    'clouds_midnight',
14    'cobalt',
15    'crimson_editor',
16    'dawn',
17    'dreamweaver',
18    'eclipse',
19    'github',
20    'idle_fingers',
21    'kr_theme',
22    'merbivore',
23    'merbivore_soft',
24    'mono_industrial',
25    'monokai',
26    'pastel_on_dark',
27    'solarized_dark',
28    'solarized_light',
29    'terminal',
30    'textmate',
31    'tomorrow',
32    'tomorrow_night',
33    'tomorrow_night_blue',
34    'tomorrow_night_bright',
35    'tomorrow_night_eighties',
36    'twilight',
37    'vibrant_ink',
38    'xcode',
39));
40if (!action_plugin_aceeditor::has_jquery()) {
41    $meta['loadjquery'] = array('onoff');
42}
43$meta['latex'] = array('onoff');
44$meta['markdown'] = array('onoff');
45$meta['xmltags'] = array('string', '_pattern' => '/^(([a-z][\w.-]*)(,[a-z][\w.-]*)*|)$/i');
46