1<?php
2/**
3 * Options for the syntaxhighlighter4 plugin.
4 *
5 * @author CrazyMax <contact@crazymax.dev>
6 */
7
8$meta['theme'] = array('multichoice', '_choices' => array(
9  'theme-default.css',
10  'theme-django.css',
11  'theme-eclipse.css',
12  'theme-emacs.css',
13  'theme-fadetogrey.css',
14  'theme-mdultra.css',
15  'theme-midnight.css',
16  'theme-rdark.css',
17  'theme-swift.css',
18));
19
20// defaults
21$meta['autoLinks'] = array('onoff');
22$meta['firstLine'] = array('numeric');
23$meta['gutter'] = array('onoff');
24$meta['htmlScript'] = array('onoff');
25$meta['smartTabs'] = array('onoff');
26$meta['tabSize'] = array('numeric');
27$meta['override'] = array('multicheckbox', '_choices' => array('code','file'));
28