Easy Code Highlighter
Code Highlighter Plugin for Joomla

Easy Code Highlighter is an easy to use system plugin for highlighting code snippets in Joomla . This plugin is supported by all versions of Joomla and has 8 theme styles to define. The highlighter is supported by about 18 programming languages.
Live Demo 1
Displaying PHP code inside an article using the plugin.
{code}
<?php
echo "Welcome to PHP";
?>
<span>Hello</span>
<?php
/***********************************
** Multiline block comments
**********************************/
$stringWithUrl = "http://alexgorbatchev.com";
$stringWithUrl = 'http://alexgorbatchev.com';
ob_start("parseOutputBuffer"); // Start Code Buffering
session_start();
function parseOutputBuffer(\$buf) {
global $portal_small_code, $portal_gzcompress;
global $PHP_SELF, $HTTP_ACCEPT_ENCODING;
// cleaning out the code.
if($portal_small_code && !\$portal_gzcompress) {
$buf = str_replace(" ", "", $buf);
$buf = str_replace("\n", "", $buf);
$buf = str_replace(chr(13), "", $buf);
}
}
?>
{lang}php{highlight}4,7{end-code}
Live Demo 2
Displaying CSS code inside an article using the plugin.
{code}
.sample_div{
border-radius: 5px 5px 5px 5px;
border: 2px solid #FF0;
font-weight: bold !important;
}
{lang}css{highlight}{end-code}