Is there a Perl Syntax Highlighter (outputting to HTML) like PHP's GeSHi?

Posted by nebukadnezzar on Stack Overflow See other posts from Stack Overflow or by nebukadnezzar
Published on 2010-12-25T10:11:16Z Indexed on 2010/12/25 15:54 UTC
Read the original article Hit count: 230

Filed under:
|

Most PHP Developers are likely familar with the Syntax Highlighter called "GeSHi", which takes code, highlights it, with the use of HTML and CSS:

include('geshi.php');
$source = 'echo "hello, world!";
$language = 'php';
$path = 'geshi/';
$geshi = new GeSHi($source, $language, $path);
echo $geshi->parse_code();

GeSHi Supports a wide range of languages.

I wonder, is there a similar Module for Perl?

© Stack Overflow or respective owner

Related posts about perl

Related posts about syntax-highlighting