Most PHP developers are probably familiar with the Highlighter syntax called " GeSHi ", which accepts code, emphasizes it using 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 if there is a similar module for Perl?
user350814
source
share