CodeHTMLer
CodeHTMLer is a simple program that translates plain text code into a colorized HTML version of the code.
| Turns bland looking code like this: | Into colorful code like this: |
/// <summary>
/// Summary description for Main.
/// </summary>
static void Main(string[] args)
{
// string variable
string myString = "myString";
/* integer
variable */
int myInt = 2;
}
|
/// <summary> /// Summary description for Main. /// </summary> static void Main(string[] args) { // string variable string myString = "myString"; /* integer variable */ int myInt = 2; } |