Windows Live writer itself does not provideCodeThe insert function can only insert code as text, and the effect is not satisfactory.
However, live writer itself provides a lot of plug-ins:
Http://plugins.live.com/writer/browse? Orderby = mostpopular
These are all plug-ins released to Microsoft's live software website.
I copied a bunch of components I found to the blog effect, RSS effect, and code to the local effect. The comparison results can be found in the following three aspects:Article, The specific effect is described below.
In the final test results, I think the overall use effect is better:
Source code formatter and the final plug-in code block. The results of these two plug-ins are average.
Of course, these opinions are only my personal opinions for your reference.
The last two plug-ins are provided:
Http://plugins.live.com/writer/detail/source-code-formatter
Http://plugins.live.com/writer/detail/inserting-plugin-code
- 1. paste text directly
Public app ()
{
This. startup + = This. application_startup;
This. Exit + = This. application_exit;
This. unhandledexception + = This. application_unhandledexception;
Initializecomponent ();
}
2 cnblogcode
Blog effect:
Public app () {This. startup + = This. application_startup; this. Exit + = This. application_exit; this. unhandledexception + = This. application_unhandledexception; initializecomponent ();}
Google Reader:
Effect of copying code to local TXT text:
Public app ()
{
This. startup + = This. application_startup;
This. Exit + = This. application_exit;
This. unhandledexception + = This. application_unhandledexception;
Initializecomponent ();
}
3 code Snipper
Blog Effect
1: PublicAPP ()
2:{
3:This. Startup + =This. Application_startup;
4:This. Exit + =This. Application_exit;
5:This. Unhandledexception + =This. Application_unhandledexception;
6:
7:Initializecomponent ();
8:}
Google Reader:
Effect of copying code to local TXT text:
1: Public app () 2: {3: This. startup + = This. application_startup; 4: This. exit + = This. application_exit; 5: This. unhandledexception + = This. application_unhandledexception; 6: 7: initializecomponent (); 8 :}
4 insert Code
Blog effect:
PublicAPP ()
{
This. Startup + =This. Application_startup;
This. Exit + =This. Application_exit;
This. Unhandledexception + =This. Application_unhandledexception;
Initializecomponent ();
}
Google Reader:
Effect of copying code to local TXT text:
Public app () {This. startup + = This. application_startup; this. Exit + = This. application_exit; this. unhandledexception + = This. application_unhandledexception; initializecomponent ();}
5 source code
Blog effect:
Public APP (){ This . Startup + = This . Application_startup; This . Exit + = This . Application_exit; This . Unhandledexception + = This . Application_unhandledexception; initializecomponent ();}
Google Reader:
Effect of copying code to local TXT text:
Public app ()
{
This. startup + = This. application_startup;
This. Exit + = This. application_exit;
This. unhandledexception + = This. application_unhandledexception;
Initializecomponent ();
}
6 Source Code formatter
Blog effect:
PublicAPP ()
{
This. Startup + =This. Application_startup;
This. Exit + =This. Application_exit;
This. Unhandledexception + =This. Application_unhandledexception;
Initializecomponent ();
}
Google Reader:
Effect of copying code to local TXT text:
Public app ()
{
This. startup + = This. application_startup;
This. Exit + = This. application_exit;
This. unhandledexception + = This. application_unhandledexception;
Initializecomponent ();
}
7. Plug-in code block
Blog effect:
CodePublicAPP (){This. Startup + =This. Application_startup;This. Exit + =This. Application_exit;This. Unhandledexception + =This. Application_unhandledexception; initializecomponent ();}
Google Reader:
Effect of copying code to local TXT text:
Public app ()
{
This. startup + = This. application_startup;
This. Exit + = This. application_exit;
This. unhandledexception + = This. application_unhandledexception;
Initializecomponent ();
}