Crayon Syntax Highlighter For Blogger

[code hl="1, 4, 7"] <!DOCTYPE html> <HTML> <head> <title>Judul Blog</title> <style>CSS Layout & Skin</style> </head> <body> <div id=”error-page”> .. Halaman Error .. </div> <div class=”content-wrapper”> <div id=”outer-wrapper”> <header id=”header-wrapper”> .. Kepala Halaman / Logo, dll .. </header> <nav id=”menu”> .. Menu .. </nav> <div id=”main-aside”> <div id=”main-wrapper”> <article> .. Postingan .. </article> </div> <aside id=”sidebar-widget”> <div class=”widget”> .. widget ..</div> <div class=”widget”> .. widget ..</div> <div class=”widget”> .. widget ..</div> </aside> </div> <!-- End #main-aside--> </div> <!-- End #outer-wrapper --> <footer id=”footer-wrapper”> .. Kaki Halaman .. </footer> </div> </body> </HTML> this.regexList = [ { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, { regex: /^\s*@\w+/gm, css: 'decorator' }, { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' }, { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' }, { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' }, { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' }, { regex: /\b\d+\.?\w*/g, css: 'value' }, { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' } ]; .syntaxhighlighter, .syntaxhighlighter div, .syntaxhighlighter code, .syntaxhighlighter table, .syntaxhighlighter table td, .syntaxhighlighter table tr, .syntaxhighlighter table tbody { margin: 0 !important; padding: 0 !important; border: 0 !important; outline: 0 !important; background: none !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; font-weight: normal !important; font-style: normal !important; font-size: 1em !important; min-height: inherit !important; /* For IE8, FF & WebKit */ min-height: auto !important; /* For IE7 */ } [/code]