<?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/zawuji/tag:代码</link>
    <description>吃吃喝喝，一些不成体系的想法碎片堆放地。@ShanHaiBuFu</description>
    <pubDate>Sun, 07 Jun 2026 03:25:21 +0000</pubDate>
    <item>
      <title>抄了一个AO3首行缩进的workskin</title>
      <link>https://writee.org/zawuji/chao-liao-ge-ao3shou-xing-suo-jin-de-workskin</link>
      <description>&lt;![CDATA[代码&#xA;&#xA;!--more--&#xA;&#xA;workskin {&#xA;  width: 45em;&#xA;  line-height: 1.5em;&#xA;}&#xA;&#xA;workskin p {&#xA;  margin: 1em 0;&#xA;  text-indent: 2em;&#xA;}&#xA;`]]&gt;</description>
      <content:encoded><![CDATA[<p><a href="/zawuji/tag:%E4%BB%A3%E7%A0%81" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">代码</span></a></p>



<pre><code class="language-css">#workskin {
  width: 45em;
  line-height: 1.5em;
}

#workskin p {
  margin: 1em 0;
  text-indent: 2em;
}
</code></pre>
]]></content:encoded>
      <guid>https://writee.org/zawuji/chao-liao-ge-ao3shou-xing-suo-jin-de-workskin</guid>
      <pubDate>Thu, 12 Oct 2023 13:49:56 +0000</pubDate>
    </item>
    <item>
      <title>简易代码备用</title>
      <link>https://writee.org/zawuji/jian-yi-dai-ma-bei-yong</link>
      <description>&lt;![CDATA[代码 &#xA;&#xA;!--more--&#xA;&#xA;  用的 github 当图床，所以不开梯可能看不到图（。&#xA;&#xA;基本装修&#xA;&#xA;『我们可以很简单就拥有个人主页』系列&#xA;&#xA;↑ 哪里不会点哪里&#xA;&#xA;慢慢微调的装修代码↓&#xA;&#xA;body {&#xA;&#x9;font-size:13px;&#xA;&#x9;font-family: sans-serif;&#xA;&#x9;background-color: #efefef;&#xA;}&#xA;/ Blog header on index and post pages /&#xA;blog-title a {&#xA;&#x9;color: #fff;&#xA;&#x9;background-color: #0088A8;&#xA;}&#xA;blog-title a:hover {&#xA;&#x9;color: #eee;&#xA;&#x9;background-color: #0088A8;&#xA;}&#xA;/ Blog header on post pages ONLY /&#xA;#post #blog-title a {&#xA;&#x9;padding: 4px 8px;&#xA;}&#xA;/ Blog description (underneath title) on index page /&#xA;header .description {&#xA;&#x9;font-style: italic;&#xA;}&#xA;/ Post pages on blog index /&#xA;.post-title {&#xA;&#x9;font-weight:bold;&#xA;}&#xA; .post-title a.u-url:link, .post-title a.u-url:visited {&#xA;&#x9;color: darkgreen;&#xA;}&#xA;/ &#34;Read more...&#34; links /&#xA;collection .read-more {&#xA;&#x9;text-decoration: underline;&#xA;}&#xA;/ Links inside blog posts /&#xA;article p a{&#xA;&#x9;color: #008080;&#xA;&#x9;text-decoration: none;&#xA;&#x9;border-bottom: 2px solid lightsteelblue;&#xA;}&#xA;article p a:hover {&#xA;&#x9;background-color: lightsteelblue;&#xA;&#x9;color: white;&#xA;&#x9;text-decoration: none;&#xA;}&#xA;&#xA;detailssummary代码都设置了些啥·点击展开折叠图片/summary&#xA;&#xA;/details&#xA;&#xA;撰写博客文章&#xA;&#xA;【Markdown 语法】&#xA;&#xA;好心象友告诉我，因为 writee 用的 markdown 语法，首行缩进只能靠手动加入两个空格，可以用这个：&amp;emsp;&amp;emsp;&#xA;例句：&amp;emsp;&amp;emsp;啊啊啊啊&#xA;显示：&#xA;&amp;emsp;&amp;emsp;啊啊啊啊&#xA;&#xA;折叠代码：&#xA;detailssummary标题/summary被折叠内容/details&#xA;显示：&#xA;detailssummary标题/summary被折叠内容/details&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p><a href="/zawuji/tag:%E4%BB%A3%E7%A0%81" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">代码</span></a></p>



<blockquote><p>用的 github 当图床，所以不开梯可能看不到图（。</p></blockquote>

<h3 id="基本装修">基本装修</h3>

<p><a href="https://writee.org/gellneko/tutorials" rel="nofollow">『我们可以很简单就拥有个人主页』系列</a></p>

<p>↑ 哪里不会点哪里</p>

<p><img src="https://raw.githubusercontent.com/loiswm/blog-img/main/writee%E6%95%99%E7%A8%8Bcustomize.png" alt=""></p>

<p>慢慢微调的装修代码↓</p>

<pre><code class="language-css">body {
	font-size:13px;
	font-family: sans-serif;
	background-color: #efefef;
}
/* Blog header on index and post pages */
#blog-title a {
	color: #fff;
	background-color: #0088A8;
}
#blog-title a:hover {
	color: #eee;
	background-color: #0088A8;
}
/* Blog header on post pages ONLY */
#post #blog-title a {
	padding: 4px 8px;
}
/* Blog description (underneath title) on index page */
header .description {
	font-style: italic;
}
/* Post pages on blog index */
.post-title {
	font-weight:bold;
}
 .post-title a.u-url:link, .post-title a.u-url:visited {
	color: darkgreen;
}
/* &#34;Read more...&#34; links */
#collection .read-more {
	text-decoration: underline;
}
/* Links inside blog posts */
article p a{
	color: #008080;
	text-decoration: none;
	border-bottom: 2px solid lightsteelblue;
}
article p a:hover {
	background-color: lightsteelblue;
	color: white;
	text-decoration: none;
}
</code></pre>

<p><details><summary>代码都设置了些啥·点击展开折叠图片</summary>
<img src="https://raw.githubusercontent.com/loiswm/blog-img/main/writee%E6%95%99%E7%A8%8Bcss%E4%BB%A3%E7%A0%81%E5%9D%97.png" alt="">
</details></p>

<h3 id="撰写博客文章">撰写博客文章</h3>

<p><img src="https://raw.githubusercontent.com/loiswm/blog-img/main/writee%E6%95%99%E7%A8%8Bpost.png" alt=""></p>

<p><img src="https://raw.githubusercontent.com/loiswm/blog-img/main/writee%E6%95%99pin1.png" alt=""></p>

<p><a href="https://markdown.com.cn/basic-syntax/" rel="nofollow">【Markdown 语法】</a></p>
<ul><li><p>好心象友告诉我，因为 writee 用的 markdown 语法，首行缩进只能靠手动加入两个空格，可以用这个：<code>&amp;emsp;&amp;emsp;</code>
例句：<code>&amp;emsp;&amp;emsp;啊啊啊啊</code>
显示：
  啊啊啊啊</p></li>

<li><p>折叠代码：
<code>&lt;details&gt;&lt;summary&gt;标题&lt;/summary&gt;被折叠内容&lt;/details&gt;</code>
显示：
<details><summary>标题</summary>被折叠内容</details></p></li></ul>
]]></content:encoded>
      <guid>https://writee.org/zawuji/jian-yi-dai-ma-bei-yong</guid>
      <pubDate>Thu, 02 Feb 2023 22:25:15 +0000</pubDate>
    </item>
  </channel>
</rss>