I have tried a number of syntax highlighting plugins for wordpress but these are the ones I liked the most:
jQuery.Syntax:
$(function() {
setInterval(function() {
var counter = parseInt($('body').data('counter'));
if(!counter) {
counter = 0;
}
$('body').text(counter++).data('counter', counter);
}, 1000);
});
SyntaxHighlighter Evolved:
$(function() {
setInterval(function() {
var counter = parseInt($('body').data('counter'));
if(!counter) {
counter = 0;
}
$('body').text(counter++).data('counter', counter);
}, 1000);
});