vote up 1 vote down star

I have a CSS parser thats printing out stylesheet to the browser like so:

$cssParser->parse( 'style.css' );
echo '<pre>'; print_r( $cssParser ); echo '</pre>';

Can I 'syntax highlight' the output CSS somehow?

Thanks

flag

1  
What does $cssParser->parse('style.css') do? Break the CSS into some kind of mapping of names to values? – Dominic Rodger Oct 12 at 5:49

2 Answers

vote up 5 vote down check

If you want to code-highlight something using PHP, getting some HTML code as output, GeSHi - Generic Syntax Highlighter is a nice solution (used by many software, should I add), that supports lots of languages -- and CSS seems to be one of those.

If you want to try it without integrating it into your application first, there is a demo page available, btw.

link|flag
vote up 2 vote down

Hyperlight? (download from svn at http://code.google.com/p/hyperlight/source/browse/trunk/)

http://stackoverflow.com/questions/230270/php-syntax-highlighting?

link|flag
Tried, but there's nothing in the download section. – Nimbuz Oct 12 at 6:04
1  
didn't notice that. the code is in svn, though... – Stobor Oct 12 at 12:42
Damn, I really need to produce a release for the project. :-( – Konrad Rudolph Oct 12 at 12:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.