Windows Live Writer发布测试

<p>这是一篇测试博文,本文将测试Windows Live Writer及其各常用插件对发布OSChina博文的支持情况。</p> <p>首先是微软Live Writer官方下载页面上最受欢迎代码高亮插件<a href="http://plugins.live.com/writer/detail/insert-code-for-windows-live-writer">Insert Code for Windows Live Writer</a>顺便测试一下发图片: <br /><a href="http://static.oschina.net/uploads/img/201309/03215603_QoqP.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Windows Live Writer Pugins" border="0" alt="Windows Live Writer Pugins" src="http://static.oschina.net/uploads/img/201309/03215612_AEW4.png" width="839" height="533" /></a>(png格式图片) <br /></p> <h3>1.Insert code for Windows Live Writer</h3> <p>界面: <br /><a href="http://static.oschina.net/uploads/img/201309/03215614_aCNM.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="QQ截图20130903211010" border="0" alt="QQ截图20130903211010" src="http://static.oschina.net/uploads/img/201309/03215618_ZimN.png" width="579" height="640" /></a>(bmp格式图片) <br />可供选择的语言种类有点少,只有C#,js,html,tsql,msh,vb: <br /><a href="http://static.oschina.net/uploads/img/201309/03215619_pBdU.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215619_3cgC.png" width="173" height="105" /></a>(QQ截图) <br />插入效果(本机截图): <br /><a href="http://static.oschina.net/uploads/img/201309/03215619_mSuJ.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215620_BBew.png" width="254" height="133" /></a> <br />实际效果: <br /> <br /></p> <pre class="csharpcode">#include &lt;stdio.h&gt;

<span class="kwrd">int</span> main() { printf(<span class="str">"Hello world!"</span>); <span class="kwrd">return</span> 0; }</pre>

<p><style type="text/css"> .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }</style><style type="text/css"> .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }</style>默认效果是没有line number的,选上line numbers以后:

<br />本机:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215620_nwmF.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215620_nyKu.png" width="266" height="116" /></a>

<br />实际:

<br /></p>

<p class="csharpcode"> <pre><span class="lnum"> 1: </span>#include &lt;stdio.h&gt;</pre>

<pre><span class="lnum"> 2: </span>&#160;</pre>

<pre><span class="lnum"> 3: </span><span class="kwrd">int</span> main()</pre>

<pre><span class="lnum"> 4: </span>{</pre>

<pre><span class="lnum"> 5: </span> printf(<span class="str">&quot;Hello world!&quot;</span>);</pre>

<pre><span class="lnum"> 6: </span> <span class="kwrd">return</span> 0;</pre>

<pre><span class="lnum"> 7: </span>}</pre>

</p>

<p><style type="text/css"> .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }</style>再加上alternate line background:

<br />本机:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215621_6q4b.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215621_wTAW.png" width="312" height="122" /></a>

<br />实际:

<br /></p>

<p class="csharpcode"> <pre class="alt"><span class="lnum"> 1: </span>#include &lt;stdio.h&gt;</pre>

<pre><span class="lnum"> 2: </span>&#160;</pre>

<pre class="alt"><span class="lnum"> 3: </span><span class="kwrd">int</span> main()</pre>

<pre><span class="lnum"> 4: </span>{</pre>

<pre class="alt"><span class="lnum"> 5: </span> printf(<span class="str">&quot;Hello world!&quot;</span>);</pre>

<pre><span class="lnum"> 6: </span> <span class="kwrd">return</span> 0;</pre>

<pre class="alt"><span class="lnum"> 7: </span>}</pre>

</p>

<p><style type="text/css"> .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }</style></p>

<h3>2.<strong>Code Formatter for Windows Live Writer</strong></h3>

<p> <br />接下来测试一下@红薯 推荐的<a href="http://plugins.live.com/writer/detail/code-formatter-for-windows-live-writer">插件</a>:

<br />界面要比Insert code复杂:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215624_yWGk.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215630_8lkY.png" width="643" height="590" /></a>(QQ截图测试)

<br />插入效果:

<br />本机:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215630_FKrq.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215630_ImWP.png" width="404" height="146" /></a>

<br />实际:

<br /></p>

<p> <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:9D7513F9-C04C-4721-824A-2B34F0212519:b95f2c45-3ebc-47d8-a593-e2d7f428a19a" class="wlWriterEditableSmartContent"><pre class="brush: java; gutter: true; first-line: 1; tab-size: 4; toolbar: false; highlight: * ; width: 553px; height: 146px;" style=" width: 553px; height: 146px;overflow: auto;">import java.io.*;

class Test { public static void main(String[] args) { System.out.println("Hello world"); } } </pre><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin. http://dunnhq.com --></div>

</p>

<p>点中这段看似没有颜色的代码,右边多出了一个“编辑栏”: <br /><a href="http://static.oschina.net/uploads/img/201309/03215636_QX1o.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215646_Lkof.png" width="1302" height="736" /></a>

<br />(Print Screen截图测试)</p>

<h3>3.Code Snippet Plugin for Windows Live Writer</h3>

<p>微软官方下载量第二的代码插件:</p>

<p><a href="http://static.oschina.net/uploads/img/201309/03215647_KEDC.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215648_qiXA.png" width="637" height="136" /></a>

<br />界面:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215650_D7Ff.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215653_ps87.png" width="572" height="400" /></a>

<br />单纯语法高亮:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215653_QnCf.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215654_hiQn.png" width="215" height="109" /></a></p>

<div id="codeSnippetWrapper"> <pre id="codeSnippet" class="csharpcode"><span class="preproc">#include</span> &lt;stdio.h&gt;<br /><br /><span class="kwrd">int</span> main()<br />{<br /> printf(<span class="str">&quot;Hello world!&quot;</span>);<br /> <span class="kwrd">return</span> 0;<br />}<br /></pre> </div>

<p>加上行号: <br /><a href="http://static.oschina.net/uploads/img/201309/03215654_wqGC.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215655_Ki5U.png" width="235" height="109" /></a>

<br />

<div id="codeSnippetWrapper"> <div id="codeSnippet" class="csharpcode"> <pre class="alteven"><span id="lnum1" class="lnum"> 1:</span> <span class="preproc">#include</span> &lt;stdio.h&gt;</pre> <!--CRLF-->

  <pre class="alteven"><span id="lnum2" class="lnum">   2:</span>&#160; </pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum3" class="lnum">   3:</span> <span class="kwrd">int</span> main()</pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum4" class="lnum">   4:</span> {</pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum5" class="lnum">   5:</span>     printf(<span class="str">&quot;Hello world!&quot;</span>);</pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum6" class="lnum">   6:</span>     <span class="kwrd">return</span> 0;</pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum7" class="lnum">   7:</span> }</pre>

<!--CRLF--></div>

</div> 再加上alternate line background:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215656_LEHj.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215656_XSg3.png" width="264" height="98" /></a>

<br />

<div id="codeSnippetWrapper"> <div id="codeSnippet" class="csharpcode"> <pre class="alt"><span id="lnum1" class="lnum"> 1:</span> <span class="preproc">#include</span> &lt;stdio.h&gt;</pre> <!--CRLF-->

  <pre class="alteven"><span id="lnum2" class="lnum">   2:</span>&#160; </pre>

<!--CRLF-->

  <pre class="alt"><span id="lnum3" class="lnum">   3:</span> <span class="kwrd">int</span> main()</pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum4" class="lnum">   4:</span> {</pre>

<!--CRLF-->

  <pre class="alt"><span id="lnum5" class="lnum">   5:</span>     printf(<span class="str">&quot;Hello world!&quot;</span>);</pre>

<!--CRLF-->

  <pre class="alteven"><span id="lnum6" class="lnum">   6:</span>     <span class="kwrd">return</span> 0;</pre>

<!--CRLF-->

  <pre class="alt"><span id="lnum7" class="lnum">   7:</span> }</pre>

<!--CRLF--></div>

</div> 再加上Embedded Style:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215656_cuIh.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215657_lZvA.png" width="285" height="114" /></a>

<br />

<div id="codeSnippetWrapper"> <div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px" id="codeSnippet"> <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum1"> 1:</span> <span style="color: #cc6633">#include</span> &lt;stdio.h&gt;</pre> <!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum2">   2:</span>&#160; </pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum3">   3:</span> <span style="color: #0000ff">int</span> main()</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum4">   4:</span> {</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum5">   5:</span>     printf(<span style="color: #006080">&quot;Hello world!&quot;</span>);</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum6">   6:</span>     <span style="color: #0000ff">return</span> 0;</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum7">   7:</span> }</pre>

<!--CRLF--></div>

</div>

<br />再加上Use Container:

<br /><a href="http://static.oschina.net/uploads/img/201309/03215657_fKPx.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://static.oschina.net/uploads/img/201309/03215658_L71U.png" width="1270" height="157" /></a>

<br />

<div style="border-bottom: silver 1px solid; text-align: left; border-left: silver 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; max-height: 200px; font-size: 8pt; overflow: auto; border-top: silver 1px solid; cursor: text; border-right: silver 1px solid; padding-top: 4px" id="codeSnippetWrapper"> <div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px" id="codeSnippet"> <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum1"> 1:</span> <span style="color: #cc6633">#include</span> &lt;stdio.h&gt;</pre> <!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum2">   2:</span>&#160; </pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum3">   3:</span> <span style="color: #0000ff">int</span> main()</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum4">   4:</span> {</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum5">   5:</span>     printf(<span style="color: #006080">&quot;Hello world!&quot;</span>);</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum6">   6:</span>     <span style="color: #0000ff">return</span> 0;</pre>

<!--CRLF-->

  <pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum7">   7:</span> }</pre>

<!--CRLF--></div>

</div></p>

转载于:https://my.oschina.net/u/737017/blog/158965

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值