Windows Live Writer 本身不提供代碼插入的功能, 只能把代碼當做文本插入, 效果不理想.
不過Live Writer本身也提供了一大堆外掛程式使用:
http://plugins.live.com/writer/browse?orderby=mostpopular
這個都是發布到微軟的live軟體網站上的外掛程式.
我把我搜尋到的一堆組件在部落格效果, Rss效果, 代碼拷貝到本地的效果, 三個方面進行了比對具體的比對效果可以參考下面的文章, 具體效果下面有說明.
最終的測試結果, 我覺得總體使用效果比較理想的是:
Source Code Formatter 和最後的外掛程式代碼塊, 這兩個外掛程式的各種效果的比較平均.
當然, 這些意見僅僅是我個人看法, 僅供參考.
提供最後兩個外掛程式的:
http://plugins.live.com/writer/detail/source-code-formatter
http://plugins.live.com/writer/detail/inserting-plugin-code
- 1 直接文本粘貼
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
2 CnBlogCode
部落格效果:
public App(){ this.Startup += this.Application_Startup; this.Exit += this.Application_Exit; this.UnhandledException += this.Application_UnhandledException; InitializeComponent();}
Google Reader中閱讀效果:
代碼拷貝到本地txt文本中的效果:
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
3 Code Snipper
部落格效果
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: }
Google Reader中閱讀效果:
代碼拷貝到本地txt文本中的效果:
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
部落格效果:
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
Google Reader中閱讀效果:
代碼拷貝到本地txt文本中的效果:
public App(){ this.Startup += this.Application_Startup; this.Exit += this.Application_Exit; this.UnhandledException += this.Application_UnhandledException; InitializeComponent();}
5 Source Code
部落格效果:
public App() { this.Startup +=this.Application_Startup; this.Exit +=this.Application_Exit; this.UnhandledException +=this.Application_UnhandledException; InitializeComponent(); }
Google Reader中閱讀效果:
代碼拷貝到本地txt文本中的效果:
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
6 Source Code Formatter
部落格效果:
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
Google Reader中閱讀效果:
代碼拷貝到本地txt文本中的效果:
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
7 外掛程式代碼塊
部落格效果:
Code public App() { this.Startup += this.Application_Startup; this.Exit += this.Application_Exit; this.UnhandledException += this.Application_UnhandledException; InitializeComponent(); }
Google Reader中閱讀效果:
代碼拷貝到本地txt文本中的效果:
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}