I've got new things what i've find for a while
HOW to user SyntaxHighlighter
easy 3 step to complete this highlighter
1) Include the core files and the brushes for any language you want. Your paths may be different.
<script type="text/javascript" src="/syntaxhighlighter/js/shCore.js"></script>
<script type="text/javascript" src="/syntaxhighlighter/js/shBrushPhp.js"></script>
<script type="text/javascript" src="/syntaxhighlighter/js/shBrushJScript.js"></script>
<script type="text/javascript" src="/syntaxhighlighter/js/shBrushXml.js"></script>
2) Put this at the end of your file. If you put it before the code you want highlighted it won’t work.
<script class="javascript">
dp.SyntaxHighlighter.ClipboardSwf = "syntaxhighlighter/js/clipboard.swf";
dp.SyntaxHighlighter.HighlightAll("code");
</script>
3) Wrap your code and tell SyntaxHighlighter which brush to use. Remember to replace < with < , & with &
<pre name="code" class="php">
<?php
class Highlighters() {
function result($highlighter) {
switch ($highlighter) {
case "chili":
default:
return "FTL";
case "syntaxhighlighter":
return "FTW";
}
}
}
for($i=0;$i<10;$i++){
print_r($_POST[$i])
}
$highlighters = new Highlighters();
printf("Chili is a nice effort, but just not for me. Chili %s", $highlighters->result("chili"));
printf("I am going to give SyntaxHighlighter a shot. SyntaxHighlighter %s", $highlighters->result("syntaxhighlighter"));
?>
<HTML>
<BODY onload='init();'>
TESTING HELLO WORLD
</BODY>
</HTML>
</pre>
From : http://www.pseudocoder.com/
For blogger.com following this link