<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>教程 &amp;mdash; 江（短篇版）</title>
    <link>https://writee.org/jiangshanghan/tag:教程</link>
    <description>此页仅存短篇。收看连载请移步WordPress.com处的博客（见“介绍”↓）@江尚寒</description>
    <pubDate>Thu, 04 Jun 2026 00:39:51 +0000</pubDate>
    <item>
      <title>在WordPress中添加正计时</title>
      <link>https://writee.org/jiangshanghan/zai-wordpresszhong-tian-jia-zheng-ji-shi</link>
      <description>&lt;![CDATA[#教程 #WordPress #html &#xA;&#xA;自用存档，可以复制。&#xA;&#xA;!--more--&#xA;&#xA;操作方法：在WordPress的后台（编辑文章，或者是编辑页面，或者是编辑小工具）选择“自定义html”，复制粘贴下方代码后保存修改。&#xA;&#xA;来源于百度知道&#xA;&#xA;（代码如下，日期按需修改）&#xA;&#xA;html&#xA;head&#xA;title离开某一天日期/title&#xA;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34;&#xA;/head&#xA;body onLoad=&#34;startclock()&#34;&#xA;center&#xA;table border=0 bordercolor=blue borderlight=green style=&#34;border-collapse: collapse&#34; cellpadding=&#34;0&#34; cellspacing=&#34;0&#34;&#xA;trtd align=center height=100 width=400&#xA;SCRIPT LANGUAGE=&#34;JavaScript&#34;&#xA;&#xA;&lt;!--&#xA;&#xA;var timerID;&#xA;&#xA;var timerRunning = false;&#xA;&#xA;var today = new Date();&#xA;&#xA;var startday = new Date();&#xA;&#xA;var secPerDay = 0;&#xA;&#xA;var minPerDay = 0;&#xA;&#xA;var hourPerDay = 0;&#xA;&#xA;var secsLeft = 0;&#xA;&#xA;var secsRound = 0;&#xA;&#xA;var secsRemain = 0;&#xA;&#xA;var minLeft = 0;&#xA;&#xA;var minRound = 0;&#xA;&#xA;var minRemain = 0;&#xA;&#xA;var timeRemain = 0;&#xA;&#xA;/ This function will stop the clock /&#xA;&#xA;function stopclock()&#xA;&#xA;{&#xA;&#xA;if(timerRunning)&#xA;&#xA;clearTimeout(timerID);&#xA;&#xA;timerRunning = false;&#xA;&#xA;}&#xA;&#xA;/ This function will start the clock /&#xA;&#xA;function startclock()&#xA;&#xA;{&#xA;&#xA;stopclock();&#xA;&#xA;showtime1();&#xA;&#xA;}&#xA;&#xA;/ This function will display the count-up /&#xA;&#xA;function showtime1()&#xA;&#xA;{&#xA;&#xA;startday = new Date(&#34;Mar 03, 2020 00:00 EDT&#34;);&#xA;&#xA;startday.setYear(&#34;2020&#34;);&#xA;&#xA;today = new Date();&#xA;&#xA;secsPerDay = 1000 ;&#xA;&#xA;minPerDay = 60  1000 ;&#xA;&#xA;hoursPerDay = 60  60  1000;&#xA;&#xA;PerDay = 24  60  60  1000;&#xA;&#xA;/ Seconds /&#xA;&#xA;secsLeft = (today.getTime() - startday.getTime()) / minPerDay;&#xA;&#xA;secsRound = Math.round(secsLeft);&#xA;&#xA;secsRemain = secsLeft - secsRound;&#xA;&#xA;secsRemain = (secsRemain &lt; 0) ? secsRemain = 60 - ((secsRound - secsLeft)  60) : secsRemain = (secsLeft - secsRound)  60;&#xA;&#xA;secsRemain = Math.round(secsRemain);&#xA;&#xA;/ Minutes /&#xA;&#xA;minLeft = ((today.getTime() - startday.getTime()) / hoursPerDay);&#xA;&#xA;minRound = Math.round(minLeft);&#xA;&#xA;minRemain = minLeft - minRound;&#xA;&#xA;minRemain = (minRemain &lt; 0) ? minRemain = 60 - ((minRound - minLeft)  60) : minRemain = ((minLeft - minRound)  60);&#xA;&#xA;minRemain = Math.round(minRemain - 0.495);&#xA;&#xA;/ Hours /&#xA;&#xA;hoursLeft = ((today.getTime() - startday.getTime()) / PerDay);&#xA;&#xA;hoursRound = Math.round(hoursLeft);&#xA;&#xA;hoursRemain = hoursLeft - hoursRound;&#xA;&#xA;hoursRemain = (hoursRemain &lt; 0) ? hoursRemain = 24 - ((hoursRound - hoursLeft)  24) : hoursRemain = ((hoursLeft - hoursRound)  24);&#xA;&#xA;hoursRemain = Math.round(hoursRemain - 0.5);&#xA;&#xA;/ Days /&#xA;&#xA;daysLeft = ((today.getTime() - startday.getTime()) / PerDay);&#xA;&#xA;daysLeft = (daysLeft - 0.5);&#xA;&#xA;daysRound = Math.round(daysLeft);&#xA;&#xA;daysRemain = daysRound;&#xA;&#xA;/ Time /&#xA;&#xA;if (daysRemain == 1)&#xA;&#xA;{&#xA;&#xA;dayrem = &#34; day, &#34;&#xA;&#xA;}&#xA;&#xA;else&#xA;&#xA;{&#xA;&#xA;dayrem = &#34; days, &#34;&#xA;&#xA;}&#xA;&#xA;if (hoursRemain == 1)&#xA;&#xA;{&#xA;&#xA;hourrem = &#34; hour, &#34;&#xA;&#xA;}&#xA;&#xA;else&#xA;&#xA;{&#xA;&#xA;hourrem = &#34; hours, &#34;&#xA;&#xA;}&#xA;&#xA;if (minRemain == 1)&#xA;&#xA;{&#xA;&#xA;minrem = &#34; minute, &#34;&#xA;&#xA;}&#xA;&#xA;else&#xA;&#xA;{&#xA;&#xA;minrem = &#34; minutes, &#34;&#xA;&#xA;}&#xA;&#xA;if (secsRemain == 1)&#xA;&#xA;{&#xA;&#xA;secrem = &#34; second&#34;&#xA;&#xA;}&#xA;&#xA;else&#xA;&#xA;{&#xA;&#xA;secrem = &#34; seconds&#34;&#xA;&#xA;}&#xA;&#xA;timeRemain = daysRemain + dayrem + hoursRemain + hourrem + minRemain +&#xA;&#xA;minrem + secsRemain + secrem;&#xA;&#xA;document.up.face.value = timeRemain;&#xA;&#xA;timerID = setTimeout(&#34;showtime1()&#34;,1000);&#xA;&#xA;timerRunning = true;&#xA;&#xA;}&#xA;&#xA;//--  /SCRIPT&#xA;P&#xA;&#xA;FONT SIZE=+1 FACE=&#34;Arial&#34;&#xA;此站点已成功运行了&#xA;/FONT&#xA;FORM NAME=&#34;up&#34;&#xA;&#xA;INPUT TYPE=&#34;text&#34; NAME=&#34;face&#34; SIZE=&#34;47&#34; VALUE=&#34;A browser supporting JavaScript 1.1+ is needed.&#34;&#xA;&#xA;/FORM&#xA;&#xA;/td/tr&#xA;/table/center&#xA;br&#xA;center&#xA; SCRIPT LANGUAGE=&#34;JavaScript&#34;&#xA;&#xA;&lt;!-- hide&#xA;&#xA;function goHist(a)&#xA;&#xA;{&#xA;&#xA;history.go(a);&#xA;&#xA;}&#xA;&#xA;//--  /script/center&#xA;br&#xA;/body&#xA;/html &#xA;&#xA;（代码到此结束）&#xA;&#xA;效果会是这样：&#xA;&#xA;此站点已成功运行了&#xA;XXXX days, XXXX hours, XXXX minutes, XXXX seconds&#xA;&#xA;如有需求，也可以在代码中间自行将day_rem行中的day/hour/min/sec修改为汉字（日/时/分/秒）&#xA;&#xA;----&#xD;&#xA;前往mastodon @jiangshanghan@slashine.onl 与我互动。&#xD;&#xA;连载放置于 https://jiangshanghan.art.blog&#xD;&#xA;&#xD;&#xA;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-nc-sa/4.0/&#34;img alt=&#34;知识共享许可协议&#34; style=&#34;border-width:0&#34; src=&#34;https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png&#34; //abr /本作品由 江尚寒 采用a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-nc-sa/4.0/&#34;知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议/a进行许可。]]&gt;</description>
      <content:encoded><![CDATA[<p><a href="/jiangshanghan/tag:%E6%95%99%E7%A8%8B" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">教程</span></a> <a href="/jiangshanghan/tag:WordPress" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">WordPress</span></a> <a href="/jiangshanghan/tag:html" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">html</span></a></p>

<p>自用存档，可以复制。</p>



<p>操作方法：在WordPress的后台（编辑文章，或者是编辑页面，或者是编辑小工具）选择“自定义html”，复制粘贴下方代码后保存修改。</p>

<p>来源于<a href="https://zhidao.baidu.com/question/42775101.html" rel="nofollow">百度知道</a></p>

<p>（代码如下，日期按需修改）</p>

<pre><code>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;离开某一天日期&lt;/title&gt;
&lt;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34;&gt;
&lt;/head&gt;
&lt;body onLoad=&#34;startclock()&#34;&gt;
&lt;center&gt;
&lt;table border=0 bordercolor=blue borderlight=green style=&#34;border-collapse: collapse&#34; cellpadding=&#34;0&#34; cellspacing=&#34;0&#34;&gt;
&lt;tr&gt;&lt;td align=center height=100 width=400&gt;
&lt;SCRIPT LANGUAGE=&#34;JavaScript&#34;&gt;

&lt;!--

var timerID;

var timerRunning = false;

var today = new Date();

var startday = new Date();

var secPerDay = 0;

var minPerDay = 0;

var hourPerDay = 0;

var secsLeft = 0;

var secsRound = 0;

var secsRemain = 0;

var minLeft = 0;

var minRound = 0;

var minRemain = 0;

var timeRemain = 0;

/* This function will stop the clock */

function stopclock()

{

if(timerRunning)

clearTimeout(timerID);

timerRunning = false;

}

/* This function will start the clock */

function startclock()

{

stopclock();

showtime1();

}

/* This function will display the count-up */

function showtime1()

{

startday = new Date(&#34;Mar 03, 2020 00:00 EDT&#34;);

startday.setYear(&#34;2020&#34;);

today = new Date();

secsPerDay = 1000 ;

minPerDay = 60 * 1000 ;

hoursPerDay = 60 * 60 * 1000;

PerDay = 24 * 60 * 60 * 1000;

/* Seconds */

secsLeft = (today.getTime() - startday.getTime()) / minPerDay;

secsRound = Math.round(secsLeft);

secsRemain = secsLeft - secsRound;

secsRemain = (secsRemain &lt; 0) ? secsRemain = 60 - ((secsRound - secsLeft) * 60) : secsRemain = (secsLeft - secsRound) * 60;

secsRemain = Math.round(secsRemain);

/* Minutes */

minLeft = ((today.getTime() - startday.getTime()) / hoursPerDay);

minRound = Math.round(minLeft);

minRemain = minLeft - minRound;

minRemain = (minRemain &lt; 0) ? minRemain = 60 - ((minRound - minLeft) * 60) : minRemain = ((minLeft - minRound) * 60);

minRemain = Math.round(minRemain - 0.495);

/* Hours */

hoursLeft = ((today.getTime() - startday.getTime()) / PerDay);

hoursRound = Math.round(hoursLeft);

hoursRemain = hoursLeft - hoursRound;

hoursRemain = (hoursRemain &lt; 0) ? hoursRemain = 24 - ((hoursRound - hoursLeft) * 24) : hoursRemain = ((hoursLeft - hoursRound) * 24);

hoursRemain = Math.round(hoursRemain - 0.5);

/* Days */

daysLeft = ((today.getTime() - startday.getTime()) / PerDay);

daysLeft = (daysLeft - 0.5);

daysRound = Math.round(daysLeft);

daysRemain = daysRound;

/* Time */

if (daysRemain == 1)

{

day_rem = &#34; day, &#34;

}

else

{

day_rem = &#34; days, &#34;

}

if (hoursRemain == 1)

{

hour_rem = &#34; hour, &#34;

}

else

{

hour_rem = &#34; hours, &#34;

}

if (minRemain == 1)

{

min_rem = &#34; minute, &#34;

}

else

{

min_rem = &#34; minutes, &#34;

}

if (secsRemain == 1)

{

sec_rem = &#34; second&#34;

}

else

{

sec_rem = &#34; seconds&#34;

}

timeRemain = daysRemain + day_rem + hoursRemain + hour_rem + minRemain +

min_rem + secsRemain + sec_rem;

document.up.face.value = timeRemain;

timerID = setTimeout(&#34;showtime1()&#34;,1000);

timerRunning = true;

}

//--&gt;

&lt;/SCRIPT&gt;
&lt;P&gt;

&lt;FONT SIZE=+1 FACE=&#34;Arial&#34;&gt;
此站点已成功运行了
&lt;/FONT&gt;
&lt;FORM NAME=&#34;up&#34;&gt;

&lt;INPUT TYPE=&#34;text&#34; NAME=&#34;face&#34; SIZE=&#34;47&#34; VALUE=&#34;A browser supporting JavaScript 1.1+ is needed.&#34;&gt;

&lt;/FORM&gt;

&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;
&lt;br&gt;
&lt;center&gt;
 &lt;SCRIPT LANGUAGE=&#34;JavaScript&#34;&gt;

&lt;!-- hide

function goHist(a)

{

history.go(a);

}

//--&gt;

&lt;/script&gt;&lt;/center&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt; 

</code></pre>

<p>（代码到此结束）</p>

<p>效果会是这样：</p>

<p>此站点已成功运行了
XXXX days, XXXX hours, XXXX minutes, XXXX seconds</p>

<p>如有需求，也可以在代码中间自行将day_rem行中的day/hour/min/sec修改为汉字（日/时/分/秒）</p>

<hr>

<p>前往mastodon <a href="https://writee.org/@/jiangshanghan@slashine.onl" class="u-url mention" rel="nofollow">@<span>jiangshanghan@slashine.onl</span></a> 与我互动。
连载放置于 <a href="https://jiangshanghan.art.blog" rel="nofollow">https://jiangshanghan.art.blog</a></p>

<p><a href="http://creativecommons.org/licenses/by-nc-sa/4.0/" rel="nofollow"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png"/></a><br/>本作品由 江尚寒 采用<a href="http://creativecommons.org/licenses/by-nc-sa/4.0/" rel="nofollow">知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议</a>进行许可。</p>
]]></content:encoded>
      <guid>https://writee.org/jiangshanghan/zai-wordpresszhong-tian-jia-zheng-ji-shi</guid>
      <pubDate>Thu, 23 Dec 2021 03:58:58 +0000</pubDate>
    </item>
    <item>
      <title>Hello, world. 介绍戳此</title>
      <link>https://writee.org/jiangshanghan/hello-world-rqr1</link>
      <description>&lt;![CDATA[所以这里是介绍&#xA;!--more--&#xA;由于AO3目前被ban，我将在此地进行作品的存档。&#xA;----&#xA;以下是我的社交页链接指路。&#xA;QQ闲聊群&#xA;&#xA;个人介绍&amp;发文/日常blog WordPress 如果有链接更新，也会发在这里。因write freely工具不适宜发送连载文章，目前所有的连载文章放置于WordPress。&#xA;&#xA;虚构创作（同人）小说文集 AO3&#xA;&#xA;本博客中的所有文章都存在剧透原作的可能性。&#xA;&#xA;动态@mastodon → @jiangshanghan@slashine.onl&#xA;（自主弃用）动态@twitter/instagram/reddit → @jiangshanghan&#xA;（自主弃用）动态@weibo/豆瓣 → @江尚寒&#xA;&#xA;照片 Cure World Cosplay&#xA;照片 PixelFed → @jiangshanghan@pixelfed.social &#xA;&#xA;读书 book wyrm → @jiangshanghan@bookwyrm.social &#xA;&#xA;视频 Peer Tube → @jiangshanghan@video.ploud.jp &#xA;音频 funk whale → @jiangshanghan@funkwhale.it &#xA;&#xA;----&#xA;以下备用 本博客的tag。点击tag，就可以看到全部带有这个tag的文章。&#xA;#博物馆 #历史 #笔记 #读书笔记 #翻译 #同人 #填词 #原创 #影评 #食评 #教程 #游戏 #吐槽 #脑洞 &#xA;----&#xA;以下是此网站的一些使用说明（更多请参考网站首页底部的how to use）&#xA;1.这个网站遵循的使用逻辑有点像Instagram：在文章里加上类似“#+tag”，就可以分类。（字前加#，字后加1个空格（或标点符号）即可。）读者点击tag，就可以看到全部带有这个tag的文章。&#xA;2.在你需要截取的段落后边另起一行，输入“英文惊叹号+2个英文横杠+more+2个英文横杠”这个代码，然后再另起一行，就可以让博文只显示摘要。&#xA;3.其他可参考百度所得markdown语法教程。&#xA;----&#xA;writefreely这边可以用markdown在文章中加入格式排版等，所以放一些我百度到的教程，或许有人需要。&#xA;&#xA;markdown语法教程&#xA;其一 &#xA;其二&#xA;其三&#xA;其四&#xA;也许是Markdown编辑器&#xA;完整示例&#xA;又是格式&#xA;&#xA;另：插入表格的尝试失败了。&#xA;&#xA;write freely自定义页面模板代码汇总&#xA;一个装修代码&#xA;&#xA;一个安利页 包括WF的评论代码。&#xA;&#xA;“邀请同一个圈子的小伙伴在一个节点建立blog”是非常危险的（中心化的，与fedi的去中心化思想相违背）做法，可能只方便了一点阅览，但这项好处相比安全风险来说微乎其微。除非你能严格审核成分，保证“纯洁性”，否则哪天有人反手炸站就无了（随时保留备份才是硬道理）&#xA;因wf的文章只需设置“公开”+写入tag，或直接作为外链，便可在mastodon等处被搜索到（就是fedi互通）更无需特意让同好在同站注册。]]&gt;</description>
      <content:encoded><![CDATA[<p>所以这里是介绍

由于AO3目前被ban，我将在此地进行作品的存档。</p>

<hr>

<p>以下是我的社交页链接指路。
<a href="http://jq.qq.com/?_wv=1027&amp;k=Vwyz6MME" rel="nofollow">QQ闲聊群</a></p>

<p>个人介绍&amp;发文/日常blog <a href="http://jiangshanghan.art.blog" rel="nofollow">WordPress</a> 如果有链接更新，也会发在这里。因write freely工具不适宜发送连载文章，目前所有的连载文章放置于WordPress。</p>

<p>虚构创作（同人）小说文集 <a href="http://archiveofourown.org/users/jiangshanghan" rel="nofollow">AO3</a></p>

<p>本博客中的所有文章都存在剧透原作的可能性。</p>

<p>动态@mastodon → <a href="https://writee.org/@/jiangshanghan@slashine.onl" class="u-url mention" rel="nofollow">@<span>jiangshanghan@slashine.onl</span></a>
（自主弃用）动态@twitter/instagram/reddit → @jiangshanghan
（自主弃用）动态@weibo/豆瓣 → @江尚寒</p>

<p>照片 <a href="http://worldcosplay.net/member/jshhan" rel="nofollow">Cure World Cosplay</a>
照片 PixelFed → <a href="https://writee.org/@/jiangshanghan@pixelfed.social" class="u-url mention" rel="nofollow">@<span>jiangshanghan@pixelfed.social</span></a></p>

<p>读书 book wyrm → <a href="https://writee.org/@/jiangshanghan@bookwyrm.social" class="u-url mention" rel="nofollow">@<span>jiangshanghan@bookwyrm.social</span></a></p>

<p>视频 Peer Tube → <a href="https://writee.org/@/jiangshanghan@video.ploud.jp" class="u-url mention" rel="nofollow">@<span>jiangshanghan@video.ploud.jp</span></a>
音频 funk whale → <a href="https://writee.org/@/jiangshanghan@funkwhale.it" class="u-url mention" rel="nofollow">@<span>jiangshanghan@funkwhale.it</span></a></p>

<hr>

<p>以下备用 本博客的tag。点击tag，就可以看到全部带有这个tag的文章。
<a href="/jiangshanghan/tag:%E5%8D%9A%E7%89%A9%E9%A6%86" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">博物馆</span></a> <a href="/jiangshanghan/tag:%E5%8E%86%E5%8F%B2" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">历史</span></a> <a href="/jiangshanghan/tag:%E7%AC%94%E8%AE%B0" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">笔记</span></a> <a href="/jiangshanghan/tag:%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">读书笔记</span></a> <a href="/jiangshanghan/tag:%E7%BF%BB%E8%AF%91" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">翻译</span></a> <a href="/jiangshanghan/tag:%E5%90%8C%E4%BA%BA" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">同人</span></a> <a href="/jiangshanghan/tag:%E5%A1%AB%E8%AF%8D" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">填词</span></a> <a href="/jiangshanghan/tag:%E5%8E%9F%E5%88%9B" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">原创</span></a> <a href="/jiangshanghan/tag:%E5%BD%B1%E8%AF%84" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">影评</span></a> <a href="/jiangshanghan/tag:%E9%A3%9F%E8%AF%84" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">食评</span></a> <a href="/jiangshanghan/tag:%E6%95%99%E7%A8%8B" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">教程</span></a> <a href="/jiangshanghan/tag:%E6%B8%B8%E6%88%8F" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">游戏</span></a> <a href="/jiangshanghan/tag:%E5%90%90%E6%A7%BD" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">吐槽</span></a> <a href="/jiangshanghan/tag:%E8%84%91%E6%B4%9E" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">脑洞</span></a></p>

<hr>

<p>以下是此网站的一些使用说明（更多请参考网站首页底部的how to use）
1.这个网站遵循的使用逻辑有点像Instagram：在文章里加上类似“#+tag”，就可以分类。（字前加#，字后加1个空格（或标点符号）即可。）读者点击tag，就可以看到全部带有这个tag的文章。
2.在你需要截取的段落后边另起一行，输入“&lt;英文惊叹号+2个英文横杠+more+2个英文横杠&gt;”这个代码，然后再另起一行，就可以让博文只显示摘要。
3.其他可参考百度所得markdown语法教程。</p>

<hr>

<p>writefreely这边可以用markdown在文章中加入格式排版等，所以放一些我百度到的教程，或许有人需要。</p>

<p><em>markdown语法教程</em>
<a href="http://www.jianshu.com/p/191d1e21f7ed/" rel="nofollow">其一</a>
<a href="http://www.runoob.com/markdown/md-tutorial.html" rel="nofollow">其二</a>
<a href="http://www.appinn.com/markdown/" rel="nofollow">其三</a>
<a href="http://blog.csdn.net/afei__/article/details/80717153" rel="nofollow">其四</a>
<a href="http://www.gtalkabout.cn/tools/minidown.html" rel="nofollow">也许是Markdown编辑器</a>
<a href="https://writee.org/chinux/jiao-cheng" rel="nofollow">完整示例</a>
<a href="https://writee.org/blowmind/2023nian-3yue-28ri" rel="nofollow">又是格式</a></p>

<p>另：插入表格的尝试失败了。</p>

<p><a href="https://write.as/themes/" rel="nofollow">write freely自定义页面模板代码汇总</a>
<a href="https://writee.org/fiammanda/code" rel="nofollow">一个装修代码</a></p>

<p><a href="https://paper.wf/quannaide/writefreelyan-li-shou-ce-wan-zheng-ban" rel="nofollow">一个安利页</a> 包括WF的评论代码。</p>

<p>“邀请同一个圈子的小伙伴在一个节点建立blog”是非常危险的（中心化的，与fedi的去中心化思想相违背）做法，可能只方便了一点阅览，但这项好处相比安全风险来说微乎其微。除非你能严格审核成分，保证“纯洁性”，否则哪天有人反手炸站就无了（随时保留备份才是硬道理）
因wf的文章只需设置“公开”+写入tag，或直接作为外链，便可在mastodon等处被搜索到（就是fedi互通）更无需特意让同好在同站注册。</p>
]]></content:encoded>
      <guid>https://writee.org/jiangshanghan/hello-world-rqr1</guid>
      <pubDate>Sat, 29 Feb 2020 13:27:30 +0000</pubDate>
    </item>
  </channel>
</rss>