Today I published a new version of SyntaxColor4Writer on IStaySharp.NET. It's compiled against the new beta version of Windows Live Writer with the following added features:
- 'Copy Code' link (copies everything to the clipboard)
- Caption text
- Customize backcolor, including line numbering
- Spaces in tabs
- Font size
Below you find some examples:
1 <system.web>
2 <compilation defaultLanguage="VB" debug="true"/>
3 <customErrors mode="ReadOnly"/>
4 </system.web>
C# code of the Main method class.
Program.cs -
Copy Code 1 /// <summary>
2 /// The main entry point for the application.
3 /// </summary>
4 [STAThread]
5 static void Main()
6 {
7 Application.EnableVisualStyles();
8 Application.SetCompatibleTextRenderingDefault(false);
9 Application.Run(new TestForm());
10 }