使用方法:在Visual Studio的Tools菜單下選擇匯入匯出設定即可。 使用效果如下:
C#:code
public static string Undent(string s){ int num; string[] strArray = s.Split(new char[] { '\n' }); int startIndex = 0x7fffffff; foreach (string str in strArray) { num = 0; while ((num < str.Length) && (num < startIndex)) { if (!char.IsWhiteSpace(str[num])) { startIndex = num; break; } num++; } } new StringBuilder(); for (num = 0; num < strArray.Length; num++) { if (strArray[num].Length > startIndex) { strArray[num] = strArray[num].Substring(startIndex); } } return string.Join("\n", strArray);}
Html:
code
<div id="header"> <div id="blogTitle"> <a id="lnkBlogLogo" href="http://www.cnblogs.com/xushuo/"> <img id="blogLogo" src="/Skins/custom/images/logo.gif" alt="返回首頁" /></a> <!--done--> <h1> <a id="Header1_HeaderTitle" class="headermaintitle" href="http://www.cnblogs.com/xushuo/"> @Yes! Scott!#</a></h1> <h2> /*CodeMusic*/</h2> </div> <!--end: blogTitle 部落格的標題和副標題 --> <div id="navigator"> <!--done--> <ul id="navList"> <li><a id="MyLinks1_HomeLink" class="menu" href="http://www.cnblogs.com/">部落格園</a></li> <li><a id="MyLinks1_SpaceLink" class="menu" href="http://space.cnblogs.com/">社區</a></li> </ul> <div class="blogStats"> <!--done--> 隨筆- 14 文章- 0 評論- 1 </div> <!--end: blogStats --> </div> <!--end: navigator 部落格導覽列 --></div><!--end: header 頭部 -->
XML:
code
<?xml version="1.0" encoding="utf-8"?><div id="navigator"> <!--done--> <ul id="navList"> <li> <a id="MyLinks1_HomeLink" class="menu" href="http://www.cnblogs.com/">部落格園</a> </li> <li> <a id="MyLinks1_SpaceLink" class="menu" href="http://space.cnblogs.com/">社區</a> </li> </ul> <!--end: blogStats --></div>
JavaScript:
code
$(function () { $(".catListComment").append($("<ul>")); $(".divRecentCommentAticle").each(function () { var tmp = $(this).next().html(); $(this).next().remove(); $(this).appendTo(".catListComment ul").replaceWith("<li>" + $(this).html() + "<br />" + tmp + "</li>"); }); $("#mainContent, #main,.forFlow").css("min-height", $("#sideBar").height() + 300); $(".code div").click(function () { $(this).next().slideToggle('normal'); }); $(".commentform").contents().not("[nodeType=1]").remove(); $("#comment_form>p:contains('Ctrl+Enter')").nextAll().not($(".relative_search")).remove(); $("#ctl05_divCommentPannel").siblings().not($(".relative_search")).remove(); $("#ctl05_divLoginPannel").nextAll().not($(".relative_search")).remove(); $("#navList li").hover(function () { $(this).animate({ top: -20 }, 500); }, function () { $(this).animate({ top: 0 }, 500); });});
CSS:
感興趣的的朋友可以從這裡下載: