javascript 구문 강조
(function(){
var el=document.getElementById("img");
var doc=document.documentElement,docBody=document.body;
var oldY=(doc.scrollTop || docBody.scrollTop) (doc.clientHeight /2 || docBody.clientHeight/2);
(function(){
var nowY=(doc.scrollTop || docBody.scrollTop) (doc.clientHeight/2 || docBody.clientHeight/2);
oldY =(nowY-oldY)/10;
el.style.top=Math.ceil(oldY-el.offsetHeight/2) "px"
setTimeout(arguments.callee,25);
})();
})()
CSS 구문 강조
.hello{margin:0;padding:0;}
div{width:980px;}
PHP 구문 강조
$tomorrow = mktime(0, 0,0,date( "m"),date("d") 1,date("Y"));
echo "내일은 ".date("Y/m/d", $tomorrow);
기타 언어. . .