Features
- Syntax highlights source code
- Multiple language support
(HTML, CSS, JavaScript, PHP, Perl, Java, VB, C#, SQL, XML)
- Code outlining via DHTML
Live Demo
Sample HTML Code
<div class="sub_title">Features</div>
<ul>
<li>Syntax highlights source code </li>
<li>Multiple language support </li>
<li>Code outlining via DHTML </li>
</ul><br />
Sample CSS Code
A {
color: #336699;
text-decoration: none;
}
A:Hover {
color: #DD6900;
text-decoration: underline;
}
Sample ASP.NET (VB) Code
Dim MyName As String = "John"
Dim MyAge As Integer= "25"
Public Sub Test(ByVal TestValue As String)
'Do Something
End Sub
Sample ASP.NET (C#) Code
string MyName = "John";
int MyAge = "25";
public string Test(string TestValue)
{
string functionReturnValue = null;
//Do Something
return functionReturnValue;
}