1 2 3 4 5 6 7 8 9 10 11 12 13 | <!-- jQuery Library (skip this step if already called on page ) --> < script type = "text/javascript" src = "dcodes/jquery.min.js" ></ script > <!-- (do not call twice) --> <!-- DC Syntax Highligher JS --> < script type = "text/javascript" src = "dcodes/syntaxhighlighter/scripts/shCore.js" ></ script > < script type = "text/javascript" src = "dcodes/syntaxhighlighter/scripts/shBrushJScript.js" ></ script > <!-- DC Syntax Highligher Brushes --> < script src = "dcodes/syntaxhighlighter/scripts/shBrushXml.js" type = 'text/javascript' ></ script > < script src = "dcodes/syntaxhighlighter/scripts/shBrushJScript.js" type = 'text/javascript' ></ script > < script src = "dcodes/syntaxhighlighter/scripts/shBrushCss.js" type = 'text/javascript' ></ script > <!-- DC Syntax Highligher CSS --> < link type = "text/css" rel = "stylesheet" href = "dcodes/syntaxhighlighter/styles/shCoreDefault.css" /> <!-- DC Syntax Highligher Settings --> < script type = "text/javascript" >SyntaxHighlighter.all();</ script > |
1 2 3 4 5 6 7 8 9 10 11 12 13 | <!-- jQuery Library (skip this step if already called on page ) --> < script type = "text/javascript" src = "http://cdn.dcodes.net/2/jquery.min.js" ></ script > <!-- (do not call twice) --> <!-- DC Syntax Highligher JS --> < script type = "text/javascript" src = "http://cdn.dcodes.net/2/syntaxhighlighter/scripts/shCore.js" ></ script > < script type = "text/javascript" src = "http://cdn.dcodes.net/2/syntaxhighlighter/scripts/shBrushJScript.js" ></ script > <!-- DC Syntax Highligher Brushes --> < script src = "http://cdn.dcodes.net/2/syntaxhighlighter/scripts/shBrushXml.js" type = 'text/javascript' ></ script > < script src = "http://cdn.dcodes.net/2/syntaxhighlighter/scripts/shBrushJScript.js" type = 'text/javascript' ></ script > < script src = "http://cdn.dcodes.net/2/syntaxhighlighter/scripts/shBrushCss.js" type = 'text/javascript' ></ script > <!-- DC Syntax Highligher CSS --> < link type = "text/css" rel = "stylesheet" href = "http://cdn.dcodes.net/2/syntaxhighlighter/styles/shCoreDefault.css" /> <!-- DC Syntax Highligher Settings --> < script type = "text/javascript" >SyntaxHighlighter.all();</ script > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <!-- code highlighting begins --> < html > < head > < link type = "text/css" rel = "stylesheet" href = "css/sample.css" /> < script type = "text/javascript" src = "js/sample.js" ></ script > < style > body { background:#fff; font: 12px;} </ style > </ head > < body > < h1 >My First Heading</ h1 > < p >My first paragraph.</ p > </ body > </ html > <!-- code highlighting ends --> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <!-- DC Syntax Highligher Start --> < pre class = "brush: xml" > <!-- code highlighting begins --> < html > < head > < link type = "text/css" rel = "stylesheet" href = "css/sample.css" /> < script type = "text/javascript" src = "js/sample.js" ></ script > < style > body { background:#fff; font: 12px;} </ style > </ head > < body > < h1 >My First Heading</ h1 > < p >My first paragraph.</ p > </ body > </ html > <!-- code highlighting ends --> </ pre > <!-- DC Syntax Highligher End --> Parameters: --------------------- brush: (value) - replace with language to highlight Values --------------------- xml - HTML/XML/XHTML css - CSS js - Javascript java - Java php - PHP ror - Ruby on Rails sql - SQL cf - Cold Fusion as3 - ActionScript 3 perl - Perl delphi - Delphi/Pascal vb - Visual Basic bash - Bash/Shell py - Python text - Plain Text c - C++ csharp - C# |
© TemplateAccess