Windows Live Writer 外掛程式

來源:互聯網
上載者:User

一、每次用Windows Live Writer時,在粘貼代碼總感覺很彆扭,沒有提供程式碼摺疊功能的功能。雖然用的地方也不會太多,可是心裡總是不爽。

今天抽空把這部分功能用外掛程式的形式提供出來,方便以後的使用:

1、需要使用Paste from Visual Studio外掛程式來粘貼代碼;

2、大家看看下面的代碼就可以很容易明白:

展開
摺疊public class CollapseExpandPlugin : ContentSource{    public override DialogResult CreateContent(IWin32Window dialogOwner, ref string content)    {        try        {            string expand = "<pre id=\"collapse\" class=\"code\"><a href=\"javascript:void(0);\" onclick=\"document.getElementById('expand').style.display='block';document.getElementById('collapse').style.display='none';\">展開</a></pre>\r\n";            string collapse = "<pre style=\"display: none\" id=\"expand\" class=\"code\"><a href=\"javascript:void(0);\" onclick=\"document.getElementById('collapse').style.display='block';document.getElementById('expand').style.display='none';\">摺疊</a>\r\n\r\n";            content = Regex.Replace(content, @"<pre\s+[^>]*>", expand + collapse,RegexOptions.IgnoreCase|RegexOptions.Multiline);            return DialogResult.OK;        }        catch        {            MessageBox.Show("Collapse & Expand could not convert that content.", "Convert Problem", MessageBoxButtons.OK, MessageBoxIcon.Hand);        }        return DialogResult.Cancel;    }     }

註:參考了老趙的代碼風格。

更新:增加了標誌位(Ticks)用以區分不同的代碼塊。提供原始碼下載。

二、前一陣看過《CnBlogs博文排版技巧 - YJingLee's Blog - 部落格園》文章中提到有關著作權的說明,當時就想如果用Windows Live Writer外掛程式的方法就可以很容易在每次文章之後加上它。

在使用之前需要先設定好你自己的著作權資訊,這樣以後你就可以直接在你的blog中插入你設定好的內容。這裡為了方便大家各自的著作權風格需要,我只是在選項設定中提供了簡單但是實用的文字框讓大家在其中輸入自己的著作權資訊。大家可以在文章最後看到實際效果,著作權內容參考的是YJingLee提供的模板。

外掛程式代碼很簡單,我提供了代碼歡迎大家下載試用。

作者:Hans.Hu
出處:http://huyh.cnblogs.com
本文著作權歸作者和部落格園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文串連,否則保留追究法律責任的權利。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.