2008年11月2日 星期日

新發現的在blogger貼整齊程式碼的方法

不會多換行一次

1.把visual studio的程式碼貼到word
2.把word程式碼貼到 fckeditor
3.選擇清除word "字型設定" 保留樣式設定
4.轉換成html碼 html碼copy到記事本
5.取代其中所有的div標籤
6.貼到blogger (記的選"修改html"模式)


範例

 


using System;
using System.Collections.Generic;
using System.Windows.Forms;
 
namespace vfo_autocancledebug
{
    static class Program
   {
        ///<summary>
        ///應用程式的主要進入點。
        ///</summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

 

1 意見:

張貼留言
Sammy 提到...

C# code format這個網站,就可以了。
直接把source code貼到該網站,它會轉換成利用CSS來製作色彩變化、排版等的HTML語法,再把它貼到網站上,還有把CSS再貼到網頁的header裡面就好了!