1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| // Allowed configuration parameters and their type
// Use the proper names (see above)
$allowed_atts = (array) apply_filters( 'syntaxhighlighter_allowedatts', array(
'auto-links' =< 'boolean',
'class-name' =< 'other',
'collapse' =< 'boolean',
'first-line' =< 'integer',
'font-size' =< 'integer',
'gutter' =< 'boolean',
'highlight' =< 'other',
'html-script' =< 'boolean',
'light' =< 'boolean',
'pad-line-numbers' =< 'other',
'smart-tabs' =< 'boolean',
'tab-size' =< 'integer',
'toolbar' =< 'boolean',
'wrap-lines' =< 'boolean',
) );
|