On Thu, Apr 2, 2009 at 8:02 AM, Robert Cummings <rob...@interjinn.com> wrote:
>
> Wrap the whole  highlighted block in a div with a class:
>
>    <div class="php-highlighted-code">
>    </div>
>
> Add one more INI setting to change that class. Let users leverage
> hierarchical CSS rules:
>
> div.php-highlighted-code span.keyword { color: red; }

I like that, and would further elaborate instead of INI changes etc,
allow a key-value pair array to be passed as a third argument. Perhaps
ini changes could be the "default" names.

mixed highlight_file (string $filename [, bool $return= false [, array
$class_names]]);

comment|default|keyword|html|string)

Array(
    'div_wrapper' => 'xyz-cms-div-wrapper',
    'default' => 'xyz-cms-default',
    'etc' => 'xyz-cms-etc',
);

The good thing about this as well, is for some odd or logical reason
if your using highlighting multiple times, you can change the class
names of each highlight without something like ini_set.

-Chris

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to