Sigil 的基本操作

  • 🧰软件应用
  • 2638 阅读
  • 2019年10月15日
  • 0 条评论
  • 全文共3125字, 阅读大约需要8分钟
  • 搜索引擎已收录

https://v.youku.com/v\_show/id\_XNTA4MjI3NzA4.html?spm=a1z3jc.11711052.0.0&isextonly=1

【内容简介】 本期视频主要介绍Sigil的基本操作。有以下知识点:

    • 文本导入
    • 查找替换功能

    • 搜索模板功能
    • 插入图片
    • 制作目录
    • 选定封面

    【相关知识】

    《Sigil正则表达式的入门》 正则表达式,是一种用特殊符号表示文字的方法,主要用在查找和替换方面。下面的例子可以让你知道正则表达式是干什么用的。在一个文本中,有这样的一些内容:

    序章 第一章 ABCDEF 第二章 GHIJKL 第三章 ………… 终章 这种内容我们都很熟悉,你有没有想过,用什么办法可以把这些内容一次过查找出来呢?为了简化,我们先来看这个部分。
    第一章 第二章 第三章 可以看到,这些内容有着极高的相似性,由“第”,“章”开头和结尾,中间有着一些数字。如果我们能用一个什么符号来代表中间的所有字,比如一个圆点“.”,不就可以用这样的方式来查找出所有这样的内容了吗。
    第.章 很早之前,就有人发明了一套完整的方案,让我们可以用各种不同的符号来达到这种目的,那就是我们将要了解的正则表达式。 正则表达式作为一种描述字符的方案,在大量软件、编程语言中都有所运用,而在这些不同的平台上,正则表达式的使用方式又往往会有或多或少的差异,在某个平台上管用的表达式,换个地方可能就要改改才能正确运行。那么在这篇文章里,我们主要是讲Sigil中的正则表达式,至于推广应用,就要靠大家去查找资料了。

    1. 元字符 我们前面提到,正则表达式一个重要作用就是用特别的符号来代表一类字符,而这些符号就叫做“元字符”。这些元字符在大多数环境下都是通用的。注意,元字符中所有符号都是半角符号,也就是通常说的英文符号。以下是一些常见的元字符,实际上还有更多。这些元字符都经过测试,在Sigil下有效。

    符号 意义 说明
    . 任意一个字符 最简单的元字符,匹配任意字符,但不包括换行符“\n”。
    \ 转义 把元字符改变为普通字符,或者把某些普通字符转变为元字符。 比如,“\.”就是代表普通的点号,不代表其他字符。
    \s 空白字符 半角空格、制表符等空白字符。在Sigil中还能匹配到换行符“\n”和空白行,使用要注意。 注意,不能匹配到全角空格。
    \t 制表符 匹配制表符。
    \n 换行符 表示文章的换行,这是一个不可见符号,在例子中,这个符号在“_”的位置。aaa\n bbb 你能够通过“\n”找到换行符,但不能够插入换行符。要在替换结果中换行,需要用“\r”。
    \r 回车 代表一个回车符。这个符号不会在文本中出现,因此不能查找到。 但是如果你需要在查找结果中插入一个换行,那么就要用“\r”。 注意,插入后在文本中出现的仍然会是“\n”而不是“\r”。
    \d 任意一个阿拉伯数字 也就是可以代表0~9中的任意一个。
    \D 任意一个非阿拉伯数字 0~9以外的字符,同样的,不包括换行符“\n”
    ^ 行首 即一行的开头。Sigil中不能单独使用,要配合其他字符。 比如,“^a”表示在行首的“a”,能匹配到第一行和第三行的字母“a”。第二行因为行首是空格,因此匹配不到。 abc abc abcd
    $ 行尾 表示任意一行的结尾,不包括换行符。在Sigil中不能单独使用。 比如,“c$”表示位于行尾的“c”,能够匹配到第一行和第二行的字母“c”。 abc abc abcd
    + 一或更多 表示一个或更多。必须配用其他字符使用。添加在一个字符后面,表示一个或更多个该字符。 相当于“{1,}” 比如,“a+”表示一个以上的“a”,以下例子都能匹配到。 a aa aaa
    ? 尽可能少 表示尽可能少。必须配合其他字符使用。 比如,“accccbb”中“a.*b”匹配到“accccbb”,而“a.*?b”就能只匹配到“accccb”。 ※注意:在某些平台的正则表达式中,这一功能很可能由“-”减号提供。
    | 一个逻辑选择符。 “aa|bb”既可以匹配到“aa”也可以匹配到“bb”。 可以用到多个选项中,比如“aa|bb|cc”。 “1|2|3”相当于“[123]”。
    * 尽可能多 即无或更多。相当于“{0,}”
    {n,m} 个数范围 表示匹配项的个数范围。 比如,“a{3}”表示“aaa”,“a{2,4}”表示“aa”或“aaa”或“aaaa”,“a{1,}”表示一个以上的“a”。 注意,“a{,2}”应该表示两个以下的“a”,但是这种写法在Sigil中无效,要写成“a{0,2}”。
    [] 包含 “[]”本身匹配一个字符。 比如,“[abc]”匹配“a”、“b”或“c”。通常不分顺序,“[abc]”和“[bca]”一样。 “[]”中用“-”表示范围,“[a-z]”表能匹配到“a”到“z”全部26个字母之一。 比如,“[0-9]”和“\d”是一样的,但是“\d”速度更快。 如果要在“[]”中匹配“-”本身,把“-”写在最前面,或者把它转义“\-”。 比如“[-0-9]”,就能匹配所有阿拉伯数字和“-”。
    [^] 不包含 “[]”的逆操作。 比如“a[^b]c”,能匹配到第二行,第三行。abc adc afc 注意,因为“[]”中符号是无序的,因此如果要排除字符串,要用其他方法。
    () 捕获组 “(abc)”表示把“abc”分为一组。分组后可以配合其他元字符使用。一个组称为一个捕获组。 比如,“(abc)+”就是一个或以上“abc”组合的意思。 捕获组中的内容会被记录并编号,可以通过“\0”“\1”这种形式来引用。
    (?:) 分组/非捕获组 作用上与“()”类似,能把内容分为一组,但“(?:)”仅有分组功能,不记录匹配内容。也就是说,无法通过“\0”“\1”等方式引用。 此元字符虽然消耗的资源更少,速度更快,在简单应用中可能体验不到与“()”的区别。
    \0,\1,\2… 反向引用 配合分组使用,引用一个分组。 比如,在查找时有分组“(abc)”,那么“\1”就代表“abc”。有分组“a(bc)(de)f”,那么“\0”代表“abcdef”,“\1”代表“bc”,“\2”代表“de”。如此类推。 嵌套也是一样的,比如“(abc(def))”,“\1”代表“abcdef”,“\2”代表“def”。 同样地,也能在查找时应用。 比如有字符串“abc111abc”,那么表达式“(abc).*\1”就能匹配到所有内容。 注:在其他平台中,可能使用的是$0,$1等表示方法。
    (?s) 多行匹配 放在表达式的最前端,使得“.”可以匹配到“\n”,从而实现跨行匹配。 比如以下例子:

    使用正则表达式“
    .*
    ”一次只能匹配到第一行或者第三行。 而使用“(?s)
    .*
    ”则能一次性匹配到第一行到第三行所有内容。 注:这是Sigil特有元字符,其他平台有另外的方法实现该功能。 注2:此前缀和勾选“DotAll”效果一致。
    (?U) 最少匹配 放在表达式的最前端,使得整个正则表达式实现最少匹配。 比如以下例子:
    AAA
    BBB
    CCC
    正则表达式“
    .*
    ”会匹配到整个句子。 而“(?U)
    .*
    ”只会匹配到“
    AAA
    BBB
    ”。 注:这是Sigil特有元字符,其他平台有另外的方法实现该功能。 注2:此前缀和勾选“Minimal Match”效果一致。

    2. 常用正则表达式 在这一部分,我们回来看一些很常用的正则表达式,这些表达式往往是更复杂表达式的组成部分。

    2.1 所有字符

    .* 匹配所有内容。“.”代表一个字符,“*”代表任意多个,因此“.*”代表“所有字符”。比如

    .*
    表示
    标签内的所有内容,可以依次匹配到下列各项
    AAACCCC
    !!!!AAAAACCCC啊啊啊啊
    但不能跨行,这样是匹配不到的
    AAAAAA
    如果要跨行,需要使用“(?s)”。

    2.2 空白行

    ^[ \t ]*$\n 匹配空白行的典型写法。可以匹配无内容的行,只有空格的行,只有制表符的行或者空格和制表符混合排列的行。[]中包括的分别是空格“ ”,制表符“\t”和全角空格“ ”。也可以根据需要添加更多的字符。

    2.3 行尾空白字符

    [ \t ]+$ 匹配出现在行尾的空白字符,比如空格。思路和2.2一致,使用“$”把搜查范围限定在结尾,使用了符号“+”确保最少有一个空白字符,否则会查找失败。

    2.4 压缩重复符号 查找:

    。+ 替换:
    。 很容易理解,把一个以上的“。”,换成一个“。”,从而达到压缩重复符号的目的。可以灵活改变,压缩各种重复的字符。配合2.2的查找空白行,也能实现压缩空白行。

    3. 应用实例 在这一部分,我们会看一些 Sigil 使用过程中实际会用到的例子,方便各位了解正则表达式的使用。

    3.1 添加标签 你打算为所有的图片添加一个
    ,并且class为images

    原语句
    目标语句
    使用元字符 . ,* ,\0
    查找
    替换
    \0

    解说: 查找以“<img”开头,“/>”结尾的所有句子,这个表达式默认分组为“0”,因此可以用“\0”来引用。 如果你的文本中图片语句必定是独立一行的,可以直接使用“<img”这样的简单句子。 同样的,也可以通过“/>”后面是否紧跟换行符“\n”来判断图片是否独立一行,从而实现不同位置图片的匹配。 扩展: 同样的,你可以用这个方法为各种内容很方便的添加标签,如果你常常用到这样的替换,不要忘记善用Sigil的搜索模板功能。

    3.2 拼接断行 在一些文本中,会存在断行,我们要把这些断行重新拼接起来。

    原文本 床前 明月光, 疑是地上 霜。 举头望 明月, 低头思故乡。
    目标文本 床前明月光, 疑是地上霜。 举头望明月, 低头思故乡。
    使用元字符 [^],\n
    查找 ([^,。])$\n
    替换 \1

    解说: 其实所谓的断行,就是在不该换行的地方进行了换行,那么只要分析出不该换行的特征就可以了。在这个例子中,换行只应该出现在“,”和“。”后面,因此我们查找前面没有“,”或者“。”的换行,并且将其删除就可以了。 因为使用的正则表达式会匹配到“\n”前面的一个字符,为了不把这个字符也删除,所以要用“()”把这个字符保护起来。 扩展: 实际上我们还可以使用“零宽断言”来达到这个效果,写法是“(?<![,。]$)\n”,直接替换为空,零宽断言本身就保护了字符。但是作为一个入门应用,我还是先介绍使用“[^]”的方法,关于零宽断言,有兴趣的朋友可以到这个网址了解: https://blog.csdn.net/rcom10002/acle/details/3159359

    3.3 识别章节标题 这是很常见的一个需求,我们往往要为章节标题添加

    之类的标签。通过3.1我们已经了解到如何添加标签,因此这里着重讲解如何识别标题。

    原文本 序章 第一章 XXXX 第二章 CCCC 第三章 AAAA 终章 后记
    目标文本

    序章

    第一章 XXXX

    第二章 CCCC

    第三章 AAAA

    终章

    后记

    使用元字符 . ,* ,[],(),\1,^,|,{m,n}
    查找 ^((序章|第.{1,3}章|终章|后记).*)
    替换

    \1

    解说: 表达式开始的“^”查找内容必须是每一行的开头,这样才不会匹配到正文中的“第N章”之类的内容。当然,还是无法完全排除匹配到正文的可能性,因此要注意替换次数,如果次数和章节数目不符,就要留意了。 通过“|”的使用,我们可以在一个表达式中就匹配到所有的内容,要善用“|”。“第.{1,3}章”是一个保险,最多匹配到“第九十九章”这样的字符串,在实际使用中,往往只需要写“第.章”。如果是“第1章”这样的,就可以用“第\d章”来更精准的匹配。

    3.5 自动插入内容

    原文本

    XXXX

    目标文本 XXXX

    XXXX

    使用元字符 . ,* ,(),\1,\2,(?s),\n,\r
    查找 (?s)\n(.*

    (.*)

    )
    替换 \2\r\1

    解说: 通说“()”的捕获群获取所需要的字符串,然后以逆向引用来达到插入内容的目的。使用Sigil的前置符“(?s)”使得“.*”可以匹配到换行符“\n”,因此表达式可以匹配到“…

    ”之间的所有内容。捕获组1保留以外的所有内容,以便稍后恢复,捕获组2获取<h1>中的内容,插入到<title>中去。这个操作在Sigil中比较有用,因为Sigil默认是不会填写<title>内容的。 <div id="gtx-trans" style="position: absolute; left: 292px; top: 48px;"></p><div class="gtx-trans-icon"> </div><p></div></p> </div> </div> <style type="text/css"> .shang_content { width:60%; margin:60px auto 0 auto; text-align:center; text-indent: 0; } } .hide_box { z-index:999; filter:alpha(opacity=50); background:#666; opacity:0.5; -moz-opacity:0.5; left:0; top:0; height:99%; width:100%; position:fixed; display:none; } .shang_box { color:#fff; width:800px; height:550px; padding:10px; background-color:#d8d7d7; border-radius:10px; position:fixed; z-index:1000; left:40%; top:45%; margin-left:-280px; margin-top:-280px; border: 2px solid #dc5f06; display:none; } .shang_box img { border:none; border-width:0; display: initial;} .dashang { display: inline-block; padding: 10px 25px; text-align: center; text-decoration: none; font-size: 16px; font-weight: 400; outline: 0!important; color: #fff!important; background-color: #c0a46b; border-color: #c0a46b; border-radius: 50px; text-indent: 0; line-height: 1.3em; } .shang_close { float: right; display: inline-block; position: absolute; top: -5px; right: 5px; } .shang_logo { display:block; text-align:center; margin:20px auto; } .shang_tit { width:100%; color:#000000; margin:10px auto 30px auto; } .shang_tit p { color:#000; text-align:center; font-size:18px; font-weight:900; text-indent: 0; } .shang_payimg { width:640px; text-align:center; margin:10px auto; border-radius:3px; height:365px; } .pay_explain { text-align:center; margin:10px auto 25px auto; font-size:14px; color:#673ab7; } .radiobox { width:16px; height:16px; background:url('https://nie.su/usr/themes/spzac/img/shang/radio2.jpg'); display:block; float:left; margin-top:5px; margin-right:14px; } .checked .radiobox { background:url('https://nie.su/usr/themes/spzac/img/shang/radio1.jpg'); } .shang_payselect { text-align:center; margin:0 auto; margin-top:40px; cursor:pointer; height:60px; width:320px; } .shang_payselect .pay_item { display:inline-block; margin-right:10px; float:left; } .shang_info { clear:both; text-indent: 0; } .shang_info p,.shang_info a { color:#ff0000; text-align:center; font-size:16px; text-decoration:none; line-height:0em; text-indent: 0; } </style> <div class="shang_content"> <p><a href="javascript:void(0)" onClick="dashangToggle()" class="dashang" title="打赏,支持一下"><svg t="1608258227508" class="icon" viewBox="0 0 1024 1024" aria-hidden="true" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18145" width="16" height="16"><path d="M512 640c0-35.36 28.64-64 64-64s64 28.64 64 64c0 35.36-28.64 64-64 64s-64-28.64-64-64zM928.032 416c-0.032 0-0.032 0 0 0l-0.032-192 0-96c0-53.024-43.008-96-96-96l-656 0c-97.056 0-176 78.976-176 176l0 640c0 97.024 78.944 176 176 176l576 0c97.024 0 176-78.976 176-176l0-48c0 0 0 0 0.032 0 127.936-96.032 127.936-287.968 0-384zM176 96l656 0c17.632 0 32 14.336 32 32l0 197.888c-10.048-3.584-20.736-5.888-32-5.888l-0.032 0 0-160c0-17.696-14.336-32-32-32l-672 0c-17.664 0-32 14.304-32 32l0 126.176c-19.744-20.192-31.968-47.712-31.968-78.176 0-61.856 50.112-112 112-112zM799.968 192l-672 0 0-32 672 0 0 32zM799.968 224l0 32-672 0 0-32 672 0zM799.968 288l0 32-623.968 0c-17.28 0-33.408-4.224-48-11.2l0-20.8 671.968 0zM864 848c0 61.856-50.144 112-112 112l-576 0c-61.888 0-112-50.144-112-112l0-504.352c30.432 25.184 69.472 40.352 112 40.352l656 0c17.632 0 32 14.336 32 32l0 64-288 0c-88.384 0-160 71.616-160 160s71.648 160 160 160l288 0 0 48zM904.864 736l-328.864 0c-52.928 0-96-43.072-96-96s43.072-96 96-96l288 0c19.744-0.256 39.328-9.824 51.264-25.728 3.328-4.48 5.92-9.504 8-14.752 0.288-0.704 0.8-1.248 1.056-1.984 23.008 30.176 35.68 67.168 35.68 106.464 0 49.216-19.872 94.88-55.136 128z" p-id="18146" fill="#ffffff"></path></svg>  赞  赏</a></p> <p style="color:#999999;font-size:14px;line-height:110%;"><span>如果觉得我的文章对你有用,请随意打赏</span></p> <div class="hide_box"></div> <div class="shang_box"> <a class="shang_close" href="javascript:void(0)" onClick="dashangToggle()" title="关闭"><svg t="1608276676282" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="24845" width="20" height="20" alt="取消"><path d="M497 90c246.319 0 446 199.681 446 446S743.319 982 497 982 51 782.319 51 536 250.681 90 497 90z m175.534 270.444c-11.672-11.671-30.595-11.671-42.266 0L496.156 494.556l-133.302-133.3-0.505-0.492c-11.706-11.176-30.257-11.012-41.761 0.493-11.672 11.671-11.672 30.595 0 42.266L453.89 536.822l-132.44 132.44-0.494 0.505c-11.176 11.706-11.012 30.257 0.493 41.762 11.672 11.671 30.595 11.671 42.266 0l132.44-132.441 133.258 133.26 0.505 0.494c11.706 11.176 30.256 11.011 41.761-0.494 11.672-11.671 11.672-30.594 0-42.266l-133.257-133.26L672.534 402.71l0.493-0.504c11.176-11.706 11.011-30.257-0.493-41.762z" fill="#d81e06" p-id="24846"></path></svg></a> <div class="shang_tit"> <p>感谢您的支持,我会继续努力的!</p> </div> <div class="shang_payimg"> <img src="https://imgbed.top/images/2020/09/29/a707318c6b48d28d44789bebbca8bc1d.png" alt="扫码支持" title="扫一扫" width="600" height="345"/> </div> <div class="pay_explain">扫码打赏,你说多少就多少</div> <div class="shang_info"> <p>打开 <span id="shang_pay_txt"><svg t="1608261456118" class="icon" aria-hidden="true" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="20670" width="20" height="20" style="margin-bottom:6px;"><path d="M1023.795 853.64v6.348a163.807 163.807 0 0 1-163.807 163.807h-696.18A163.807 163.807 0 0 1 0 859.988v-696.18A163.807 163.807 0 0 1 163.807 0h696.181a163.807 163.807 0 0 1 163.807 163.807V853.64z" fill="#009FE9" p-id="20671"></path><path d="M844.836 648.267c-40.952-14.333-95.623-34.809-156.846-57.128a949.058 949.058 0 0 0 90.094-222.573H573.325V307.14h245.711v-43.41l-245.71 2.458V143.33H472.173c-18.223 0-21.704 20.476-21.704 20.476v102.38H204.759v40.952h245.71v61.427H245.712v40.952h409.518a805.522 805.522 0 0 1-64.909 148.246c-128.384-42.795-266.186-77.604-354.233-55.08a213.564 213.564 0 0 0-112.003 63.27c-95.418 116.917-26.21 294.034 175.274 294.034 119.989 0 236.087-67.366 325.771-177.73 134.322 65.932 398.666 176.297 398.666 176.297V701.3s-32.352-4.095-178.96-53.033z m-563.702 144.97c-158.893 0-204.759-124.699-126.336-194.112a191.86 191.86 0 0 1 90.913-46.276c93.575-10.238 189.811 35.629 293.624 86.614-74.941 94.598-166.674 153.774-258.2 153.774z" fill="#FFFFFF" p-id="20672"></path></svg> 或者 <svg t="1608261537969" class="icon" viewBox="0 0 1024 1024" aria-hidden="true" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="22879" width="24" height="24" style="margin-bottom:6px;"><path d="M395.846 603.585c-3.921 1.98-7.936 2.925-12.81 2.925-10.9 0-19.791-5.85-24.764-14.625l-2.006-3.864-78.106-167.913c-0.956-1.98-0.956-3.865-0.956-5.845 0-7.83 5.928-13.68 13.863-13.68 2.965 0 5.928 0.944 8.893 2.924l91.965 64.43c6.884 3.864 14.82 6.79 23.708 6.79 4.972 0 9.85-0.945 14.822-2.926L861.71 282.479c-77.149-89.804-204.684-148.384-349.135-148.384-235.371 0-427.242 157.158-427.242 351.294 0 105.368 57.361 201.017 147.323 265.447 6.88 4.905 11.852 13.68 11.852 22.45 0 2.925-0.957 5.85-2.006 8.775-6.881 26.318-18.831 69.334-18.831 71.223-0.958 2.92-2.013 6.79-2.013 10.75 0 7.83 5.929 13.68 13.865 13.68 2.963 0 5.928-0.944 7.935-2.925l92.922-53.674c6.885-3.87 14.82-6.794 22.756-6.794 3.916 0 8.889 0.944 12.81 1.98 43.496 12.644 91.012 19.53 139.48 19.53 235.372 0 427.24-157.158 427.24-351.294 0-58.58-17.78-114.143-48.467-163.003l-491.39 280.07-2.963 1.98z" fill="#09BB07" p-id="22880"></path></svg> </span>扫一扫,即可进行扫码赞赏哦</p> </div> </div> </div> <script type="text/javascript"> function dashangToggle(){ $(".hide_box").fadeToggle(); $(".shang_box").fadeToggle(); } </script> <div class="Copyrightnew"><svg viewBox="0 0 1024 1024" style="width: 18px;height: 18px;min-width: 18px;min-height: 18px;margin-right: 8px;"> <path d="M614.72 554.538c-49.086-6.399-100.27-2.1-149.256-2.1-119.465 0-209.04 95.972-206.84 215.437 0 17.095 8.498 31.99 23.493 40.488 14.896 10.697 34.09 14.896 53.285 17.095 61.882 6.398 123.664 6.398 198.342 6.398 40.488 0 93.872-2.1 142.858-4.298 27.692 0 53.284-4.3 78.877-14.896 19.194-8.498 29.89-19.194 31.99-40.488 8.498-104.57-72.478-204.84-172.75-217.636zM680.8 375.39c0-87.474-74.678-162.053-164.251-162.053-89.574 0-162.053 74.679-162.053 162.053-2.1 87.474 74.678 164.252 162.053 164.252 89.673 0 164.252-74.678 164.252-164.252z" fill="#FFFFFF"></path> <path d="M512.35 0C228.733 0 0.5 228.233 0.5 511.85s228.233 511.85 511.85 511.85 511.85-228.233 511.85-511.85S795.967 0 512.35 0z m275.12 772.074c-2.1 21.294-12.797 31.99-31.991 40.488-25.593 10.697-51.185 14.896-78.877 14.896-49.086 2.099-102.37 4.298-142.858 4.298-74.678 0-136.46 0-198.342-6.398-19.195-2.1-38.389-6.398-53.285-17.095-14.895-8.497-23.493-23.493-23.493-40.488-2.1-119.465 87.475-215.437 206.84-215.437 49.085 0 100.27-4.299 149.256 2.1 100.27 12.896 181.247 113.166 172.75 217.636zM354.495 375.39c0-87.474 72.479-162.053 162.053-162.053S680.8 288.016 680.8 375.39c0 89.574-74.679 164.252-164.252 164.252-87.375 0-164.152-76.778-162.053-164.252z" fill="#249FF8"></path> </svg>本文来自投稿,不代表本站立场,如若转载,请注明出处。<br/><svg viewBox="0 0 1024 1024" style="width: 18px;height: 18px;min-width: 18px;min-height: 18px;margin-right: 8px;"> <path d="M512.35,0A511.85,511.85,0,1,0,1024.2,511.85,510.66,510.66,0,0,0,512.35,0Z" transform="translate(-0.5)" fill="#ff7058"></path><rect x="464.73" y="206.43" width="82.14" height="305.42" fill="#fff"></rect><rect x="558.43" y="418.64" width="121" height="307.41" transform="translate(1190.78 -46.58) rotate(90)" fill="#fff"></rect> </svg>本文最后更新于<span style="color:darkgreen">2020年08月11日17时50分47秒</span>,已超过<span style="color:red">1346</span>天没有更新,若内容或图片失效,请留言反馈<br/><svg viewBox="0 0 1024 1024" style="width: 18px;height: 18px;min-width: 18px;min-height: 18px;margin-right: 8px;"> <path d="M511.854421 0a511.854421 511.854421 0 1 0 512.145579 511.854421A511.854421 511.854421 0 0 0 511.854421 0z" fill="#39B54A"></path> <path d="M576.491328 630.355417l-116.462895 116.462894a129.56497 129.56497 0 0 1-182.555587 0l-2.0381-2.038101a128.982656 128.982656 0 0 1 0-182.26443l81.232868-81.232868a179.644015 179.644015 0 0 0 13.102076 70.460051l-52.69946 52.408302a69.877737 69.877737 0 0 0 0 98.702303l2.038101 2.038101a70.168894 70.168894 0 0 0 98.702303 0l116.462895-116.462894a69.877737 69.877737 0 0 0 0-98.702304l-2.038101-2.0381a69.586579 69.586579 0 0 0-13.975547-10.772818l42.508956-42.508956a128.109184 128.109184 0 0 1 13.102076 11.355132l2.0381 2.0381a129.273813 129.273813 0 0 1 0 182.26443z" fill="#FFFFFF"></path> <path d="M746.235997 460.901905l-81.232869 81.232869a179.352858 179.352858 0 0 0-13.102076-70.460051l52.69946-52.408303a69.877737 69.877737 0 0 0 0-98.702303l-2.038101-2.038101a69.877737 69.877737 0 0 0-98.702303 0l-116.462894 116.462895a69.877737 69.877737 0 0 0 0 98.702303l2.0381 2.038101a68.421951 68.421951 0 0 0 13.975548 10.772817l-42.508957 42.508957a136.552744 136.552744 0 0 1-13.102076-11.355132l-2.0381-2.038101a128.982656 128.982656 0 0 1 0-182.26443l116.462894-116.462894a129.56497 129.56497 0 0 1 182.555587 0l2.038101 2.0381a128.982656 128.982656 0 0 1 0 182.26443z" fill="#FFFFFF"></path> </svg>本文链接:<a class="j-copy" href="javascript:void(0)" data-copy="https://nie.su/archives/102.html">https://nie.su/archives/102.html</a>(转载时请注明本文出处及文章链接)<br/><svg viewBox="0 0 1024 1024" style="width: 18px;height: 18px;min-width: 18px;min-height: 18px;margin-right: 8px;"> <path d="M512 512m-512 0a512 512 0 1 0 1024 0 512 512 0 1 0-1024 0Z" fill="#F3B243"></path> <path d="M630.784 323.584m-90.112 0a90.112 90.112 0 1 0 180.224 0 90.112 90.112 0 1 0-180.224 0Z" fill="#FFFFFF"></path> <path d="M630.784 688.128m-90.112 0a90.112 90.112 0 1 0 180.224 0 90.112 90.112 0 1 0-180.224 0Z" fill="#FFFFFF"></path> <path d="M319.488 512m-90.112 0a90.112 90.112 0 1 0 180.224 0 90.112 90.112 0 1 0-180.224 0Z" fill="#FFFFFF"></path> <path d="M341.037056 480.370688l257.343488-175.7184 27.713536 40.59136-257.339392 175.7184z" fill="#FFFFFF"></path> <path d="M349.052928 488.452096l252.854272 182.10816-28.725248 39.886848-252.874752-182.10816z" fill="#FFFFFF"></path> </svg>作品采用:<a target="_blank" href="//creativecommons.org/licenses/by-nc-sa/4.0/deed.zh">《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》</a>许可协议授权</div> <div class="downmoi"></div> <div class="post__stats" style="align-items: flex-start;"> <div class="post__tags" style="align-items: stretch;margin-bottom: -10px;" id="posttag"> <svg t="1666241630854" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2168" width="18" height="18"><path d="M908.2368 463.8208l-156.5696 441.856c-18.8928 53.3504-77.568 81.152-130.816 61.952l-369.152-132.8128c-58.9312-21.1968-85.0432-89.9584-55.0912-144.9472l38.4512-70.5536 278.7328 132.0448 394.4448-287.5392z" fill="#7A7AF9" p-id="2169"></path><path d="M117.2992 450.4064l374.784-370.4832c19.968-19.712 47.616-29.5936 75.5712-26.9824l271.2576 25.6c45.7728 4.3008 81.6128 41.216 84.6336 87.04l17.152 259.7888c1.792 27.3408-8.2944 54.1184-27.6992 73.4208l-373.248 371.712c-40.2432 40.0896-105.2672 40.192-145.664 0.3072L117.3504 597.504c-41.0112-40.448-41.0112-106.5984-0.0512-147.0976z" fill="#CCDAFF" p-id="2170"></path><path d="M767.0784 227.2256m-60.1088 0a60.1088 60.1088 0 1 0 120.2176 0 60.1088 60.1088 0 1 0-120.2176 0Z" fill="#7A7AF9" p-id="2171"></path><path d="M696.2176 415.5392l-117.9648-4.2496-4.4032-116.1728a33.26464 33.26464 0 0 0-34.5088-32 33.29024 33.29024 0 0 0-32 34.5088l3.584 94.9248-37.376-37.7344a33.24928 33.24928 0 0 0-47.0528-0.2048 33.24928 33.24928 0 0 0-0.2048 47.0528l57.7536 58.2656L450.56 493.8752 393.1136 435.9168a33.24928 33.24928 0 0 0-47.0528-0.2048 33.24928 33.24928 0 0 0-0.2048 47.0528l58.0096 58.5216-36.0448 36.608a33.24928 33.24928 0 0 0 0.3584 47.0528 33.11104 33.11104 0 0 0 23.3472 9.5744c8.6016 0 17.2032-3.328 23.7056-9.9328l35.4304-35.9936 55.9104 56.4224a33.1776 33.1776 0 0 0 23.6544 9.8304 33.24928 33.24928 0 0 0 23.6544-56.6784l-56.5248-57.0368 33.4336-33.9456 56.2176 56.7296a33.1776 33.1776 0 0 0 23.6544 9.8304 33.24928 33.24928 0 0 0 23.6544-56.6784l-38.1952-38.5024 97.6384 3.5328h1.2288c17.8176 0 32.6144-14.1312 33.2288-32.0512a33.2288 33.2288 0 0 0-32-34.5088z" fill="#7A7AF9" p-id="2172"></path></svg><a href="https://nie.su/tag/%E6%95%99%E7%A8%8B/">教程</a> <a href="https://nie.su/tag/epub/">epub</a> <a href="https://nie.su/tag/sigil/">sigil</a> <a href="https://nie.su/tag/%E7%94%B5%E5%AD%90%E4%B9%A6/">电子书</a> </div> <div class="post__views"> <style> a.weixin{ position:relative; } .weixin::after{ content: url(https://tool.oschina.net/action/qrcode/generate?data=https://nie.su/archives/102.html&output=image/jpeg&type=4&margin=10&size=4); position: absolute; right: -45px; top: -175px; z-index: 99; width: 162px; height: 162px; transform-origin: bottom; transform: scale(0); opacity: 0; border:.3125rem solid #6c757d; border-radius:.15rem; -webkit-transition:all .4s ease-in-out; -o-transition:all .4s ease-in-out; transition:all .4s ease-in-out; } .weixin:hover::after{ transform:scale(1); opacity: 1; } </style> <div class="post-share-action"> <a href="//service.weibo.com/share/share.php?url=https://nie.su/archives/102.html&type=button&language=zh_cn&title=Sigil 的基本操作&searchPic=true" target="_blank" class="weibo" rel="nofollow"> <span> <svg t="1607513090298" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21467" width="20" height="20"><path d="M918.485 209.078c-62.138-69.905-155.345-95.796-238.195-77.672-20.713 5.178-31.069 23.301-28.48 44.014 5.178 20.713 23.302 31.069 44.014 28.48 59.55-12.945 126.865 5.178 170.88 54.37 44.014 49.193 56.96 116.509 36.247 176.058-2.59 10.356-2.59 18.123 2.589 28.48 5.178 7.767 12.945 15.534 20.712 18.123 18.124 5.178 38.836-5.178 46.604-23.302 23.301-85.44 7.767-178.646-54.371-248.551z" fill="#FFAE36" p-id="21468"></path><path d="M807.155 436.917c15.534 5.178 33.658-2.59 38.836-20.713 12.945-41.425 5.178-85.44-25.89-119.097-31.07-33.658-75.084-46.604-116.51-38.837-18.123 2.59-28.48 20.713-23.301 36.248 2.59 18.123 20.713 28.48 36.247 23.301 20.713-5.178 41.425 2.59 56.96 18.124 15.534 15.534 18.123 38.836 12.945 59.549-5.178 18.123 5.178 36.247 20.713 41.425z m-62.138 59.549c-12.945-5.179-23.302-7.768-15.535-23.302 15.535-38.836 15.535-72.494 0-95.796-31.068-44.014-116.508-41.425-212.304 0 0 0-31.069 12.945-23.302-10.356 15.535-49.193 12.946-88.029-10.356-111.33-51.781-51.782-191.592 2.588-310.689 121.686-88.029 90.618-139.81 183.824-139.81 266.675 0 157.934 201.948 253.73 398.718 253.73 258.907 0 429.786-150.167 429.786-269.265 0-72.494-62.138-113.919-116.508-132.042zM431.739 840.813c-157.934 15.534-292.566-56.96-302.922-157.934-10.357-103.563 108.74-199.359 266.675-214.893 157.933-15.535 292.565 56.96 302.922 157.933 10.356 103.563-108.742 199.36-266.675 214.894z" fill="#D81E06" p-id="21469"></path><path d="M447.273 545.658c-75.083-20.713-160.523 18.124-191.592 82.85-33.658 67.316 0 142.4 75.084 165.701 77.672 25.891 170.879-12.945 201.948-85.44 31.069-69.904-7.768-142.398-85.44-163.111z m-56.96 173.468c-15.534 23.302-46.603 36.247-72.494 23.302-23.301-10.356-31.069-38.836-15.534-62.138 15.534-23.302 46.603-33.658 69.905-23.302 25.89 7.768 33.658 36.247 18.123 62.138z" p-id="21470"></path></svg> </span> </a> <a href="javascript:" class="weixin" title="微信扫一扫 分享朋友圈" desc="在微信中请长按二维码" rel="nofollow"> <span> <svg t="1607513045902" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21209" width="20" height="20"><path d="M683.058 364.695c11 0 22 1.016 32.943 1.976C686.564 230.064 538.896 128 370.681 128c-188.104 0.66-342.237 127.793-342.237 289.226 0 93.068 51.379 169.827 136.725 229.256L130.72 748.43l119.796-59.368c42.918 8.395 77.37 16.79 119.742 16.79 11 0 21.46-0.48 31.914-1.442a259.168 259.168 0 0 1-10.455-71.358c0.485-148.002 128.744-268.297 291.403-268.297l-0.06-0.06z m-184.113-91.992c25.99 0 42.913 16.79 42.913 42.575 0 25.188-16.923 42.579-42.913 42.579-25.45 0-51.38-16.85-51.38-42.58 0-25.784 25.93-42.574 51.38-42.574z m-239.544 85.154c-25.384 0-51.374-16.85-51.374-42.58 0-25.784 25.99-42.574 51.374-42.574 25.45 0 42.918 16.79 42.918 42.575 0 25.188-16.924 42.579-42.918 42.579z m736.155 271.655c0-135.647-136.725-246.527-290.983-246.527-162.655 0-290.918 110.88-290.918 246.527 0 136.128 128.263 246.587 290.918 246.587 33.972 0 68.423-8.395 102.818-16.85l93.809 50.973-25.93-84.677c68.907-51.93 120.286-119.815 120.286-196.033z m-385.275-42.58c-16.923 0-34.452-16.79-34.452-34.179 0-16.79 17.529-34.18 34.452-34.18 25.99 0 42.918 16.85 42.918 34.18 0 17.39-16.928 34.18-42.918 34.18z m188.165 0c-16.984 0-33.972-16.79-33.972-34.179 0-16.79 16.927-34.18 33.972-34.18 25.93 0 42.913 16.85 42.913 34.18 0 17.39-16.983 34.18-42.913 34.18z" fill="#09BB07" p-id="21210"></path></svg> </span> </a> <a href="//connect.qq.com/widget/shareqq/index.html?url=https://nie.su/archives/102.html&title=Sigil 的基本操作&pics= target="_blank" class="qq" rel="nofollow"> <span> <svg t="1607513026499" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21072" width="20" height="20"><path d="M511.037 986.94c-85.502 0-163.986-26.686-214.517-66.544-25.66 7.149-58.486 18.655-79.202 32.921-17.725 12.202-15.516 24.647-12.32 29.67 14.027 22.069 240.622 14.092 306.04 7.219v-3.265z" fill="#FAAD08" p-id="21073"></path><path d="M495.627 986.94c85.501 0 163.986-26.686 214.518-66.544 25.66 7.149 58.485 18.655 79.203 32.921 17.724 12.202 15.512 24.647 12.32 29.67-14.027 22.069-240.623 14.092-306.042 7.219v-3.265z" fill="#FAAD08" p-id="21074"></path><path d="M496.137 472.026c140.73-0.935 253.514-27.502 291.73-37.696 9.11-2.432 13.984-6.789 13.984-6.789 0.032-1.25 0.578-22.348 0.578-33.232 0-183.287-88.695-367.458-306.812-367.47C277.5 26.851 188.8 211.021 188.8 394.31c0 10.884 0.55 31.982 0.583 33.232 0 0 3.965 4.076 11.231 6.048 35.283 9.579 150.19 37.482 294.485 38.437h1.037zM883.501 626.967c-8.66-27.825-20.484-60.273-32.455-91.434 0 0-6.886-0.848-10.366 0.158-107.424 31.152-237.624 51.006-336.845 49.808h-1.026c-98.664 1.186-227.982-18.44-335.044-49.288-4.09-1.176-12.168-0.677-12.168-0.677-11.97 31.16-23.793 63.608-32.453 91.433-41.3 132.679-27.92 187.587-17.731 188.818 21.862 2.638 85.099-99.88 85.099-99.88 0 104.17 94.212 264.125 309.947 265.596a765.877 765.877 0 0 1 5.725 0c215.738-1.471 309.947-161.424 309.947-265.595 0 0 63.236 102.519 85.102 99.88 10.186-1.231 23.566-56.14-17.732-188.819" p-id="21075"></path><path d="M429.208 303.911c-29.76 1.323-55.195-32.113-56.79-74.62-1.618-42.535 21.183-78.087 50.95-79.417 29.732-1.305 55.149 32.116 56.765 74.64 1.629 42.535-21.177 78.08-50.925 79.397m220.448-74.62c-1.593 42.507-27.03 75.941-56.79 74.62-29.746-1.32-52.553-36.862-50.924-79.397 1.614-42.526 27.03-75.948 56.764-74.639 29.77 1.33 52.57 36.881 50.951 79.417" fill="#FFFFFF" p-id="21076"></path><path d="M695.405 359.069c-7.81-18.783-86.466-39.709-183.843-39.709h-1.045c-97.376 0-176.033 20.926-183.842 39.709a6.66 6.66 0 0 0-0.57 2.672c0 1.353 0.418 2.575 1.072 3.612 6.58 10.416 93.924 61.885 183.341 61.885h1.045c89.416 0 176.758-51.466 183.34-61.883a6.775 6.775 0 0 0 1.069-3.622 6.66 6.66 0 0 0-0.567-2.664" fill="#FAAD08" p-id="21077"></path><path d="M464.674 239.335c1.344 16.946-7.87 32-20.55 33.645-12.701 1.647-24.074-10.755-25.426-27.71-1.326-16.954 7.873-32.008 20.534-33.64 12.722-1.652 24.114 10.76 25.442 27.705m77.97 8.464c2.702-4.392 21.149-27.488 59.328-19.078 10.028 2.208 14.667 5.457 15.646 6.737 1.445 1.888 1.84 4.576 0.375 8.196-2.903 7.174-8.894 6.979-12.217 5.575-2.144-0.907-28.736-16.948-53.232 6.99-1.685 1.648-4.7 2.212-7.558 0.258-2.856-1.956-4.038-5.923-2.342-8.678" p-id="21078"></path><path d="M503.821 589.328h-1.031c-67.806 0.802-150.022-8.004-229.638-23.381-6.817 38.68-10.934 87.294-7.399 145.275 8.928 146.543 97.728 238.652 234.793 239.996h5.57c137.065-1.344 225.865-93.453 234.796-239.996 3.535-57.986-0.584-106.6-7.403-145.283-79.631 15.385-161.861 24.196-229.688 23.389" fill="#FFFFFF" p-id="21079"></path><path d="M310.693 581.35v146.633s69.287 13.552 138.7 4.17V596.897c-43.974-2.413-91.4-7.79-138.7-15.546" fill="#EB1C26" p-id="21080"></path><path d="M806.504 427.238s-130.112 43.08-302.66 44.309h-1.025c-172.264-1.224-302.217-44.161-302.66-44.309L156.58 541.321c108.998 34.464 244.093 56.677 346.238 55.387l1.024-0.002c102.152 1.297 237.226-20.917 346.24-55.385l-43.579-114.083z" fill="#EB1C26" p-id="21081"></path></svg> </span> </a> <a class="douban" rel="nofollow" href="https://nie.su/archives/102.html&name=Sigil 的基本操作&image= target="_blank"> <span> <svg t="1607580055401" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="16908" width="20" height="20"><path d="M512 1024C229.2224 1024 0 794.7776 0 512 0 229.2224 229.2224 0 512 0c282.7776 0 512 229.2224 512 512 0 282.7776-229.2224 512-512 512z m228.864-671.658667V307.2H286.242133v45.141333h454.587734zM750.933333 750.933333v-45.653333h-134.997333c18.1248-26.7776 35.5328-58.7776 52.258133-96.0512l-35.4304-23.620267h65.160534V405.333333H330.734933v180.2752h62.0544l-35.4304 23.0912c18.7904 27.136 36.642133 59.306667 53.538134 96.580267H273.066667V750.933333h477.866666z m-102.144-210.722133H379.5968v-88.4224h269.192533v88.4224z m-246.954666 45.397333h222.378666c-15.1552 39.3728-35.584 79.2576-61.269333 119.671467h-100.864a1014.5792 1014.5792 0 0 0-60.245333-119.671467z" fill="#228A31" p-id="16909"></path></svg> </span> </a> <a href="https://www.facebook.com/sharer.php?u=https://nie.su/archives/102.html" target="_blank" class="facebook "> <span> <svg t="1607579834413" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11782" width="20" height="20"><path d="M572.8 98.5c-26 0-51 3.1-80.1 14.7-59.3 24.1-89.4 80.7-89.4 168.7v85.9h-83.2v143.6h83.2v414h169.5v-414h115.4l15.6-143.6h-131v-65c0-19.9 2.1-34.6 7.3-43 7.3-12.6 21.8-18.9 44.7-18.9h76.9V98.5H572.8z" fill="#667EB9" p-id="11783"></path></svg> </span> </a> <a href="https://twitter.com/intent/tweet?url=https://nie.su/archives/102.html" target="_blank" class="twitter" rel="nofollow"> <span> <svg t="1607513107575" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21598" width="20" height="20"><path d="M996.12 211.772c-27.41 40.139-60.586 74.338-99.524 102.58 0.419 5.715 0.628 14.311 0.628 25.788 0 53.242-7.782 106.353-23.346 159.333-15.565 52.986-39.201 103.845-70.903 152.58-31.707 48.735-69.47 91.84-113.279 129.306-43.813 37.474-96.638 67.37-158.477 89.693-61.84 22.323-127.951 33.491-198.335 33.491-110.943 0-212.483-29.692-304.613-89.063 14.305 1.622 30.264 2.434 47.876 2.434 92.13 0 174.226-28.247 246.284-84.738-42.974-0.84-81.467-14.043-115.478-39.62-34.01-25.57-57.358-58.222-70.042-97.94 13.519 2.04 26.018 3.063 37.495 3.063 17.612 0 35.008-2.256 52.2-6.764-45.855-9.43-83.828-32.252-113.908-68.466-30.08-36.208-45.12-78.268-45.12-126.163v-2.44c27.829 15.564 57.726 23.95 89.694 25.157-27.04-18.026-48.532-41.557-64.463-70.591-15.932-29.03-23.926-60.552-23.973-94.563 0-36.055 9.01-69.41 27.042-100.067 49.525 60.998 109.815 109.812 180.881 146.446 71.06 36.63 147.106 56.99 228.126 61.078-3.249-15.565-4.874-30.71-4.874-45.435 0-54.868 19.337-101.641 58.013-140.316s85.45-58.012 140.32-58.012c57.332 0 105.649 20.886 144.955 62.65 44.653-8.595 86.63-24.553 125.93-47.873-15.144 47.06-44.201 83.511-87.176 109.344 38.1-4.088 76.173-14.33 114.218-30.735l-0.151-0.157z" fill="#00ACED" p-id="21599"></path></svg> </span> </a> <!-- <a href="javascript:" data-clipboard-text="" class="js-copy" id="btn"> <span> <svg t="1607580164103" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="17037" width="20" height="20"><path d="M592.213333 551.025778l60.302223-60.302222A85.333333 85.333333 0 0 0 531.911111 369.948444l-60.302222 60.302223-20.138667-20.081778a56.888889 56.888889 0 0 1 0-80.440889l160.881778-160.938667a113.777778 113.777778 0 0 1 160.938667 0l80.440889 80.497778a113.777778 113.777778 0 0 1 0 160.881778l-160.938667 160.881778a56.888889 56.888889 0 0 1-80.440889 0l-20.081778-20.081778zM431.217778 470.584889l-60.302222 60.302222a85.333333 85.333333 0 0 0 120.604444 120.718222l60.416-60.359111 20.081778 20.081778a56.888889 56.888889 0 0 1 0 80.497778l-160.881778 160.881778a113.777778 113.777778 0 0 1-160.938667 0l-80.440889-80.440889a113.777778 113.777778 0 0 1 0-160.938667l160.881778-160.881778a56.888889 56.888889 0 0 1 80.497778 0l20.081778 20.138667z m181.020444-60.359111a28.444444 28.444444 0 0 1 0 40.220444l-160.881778 160.881778a28.444444 28.444444 0 1 1-40.220444-40.220444l160.881778-160.881778a28.444444 28.444444 0 0 1 40.220444 0z" fill="#5A6677" p-id="17038"></path></svg> </span> </a> <script> var btn = document.getElementById('btn'); var clipboard = new Clipboard(btn); clipboard.on('success', function(e) { console.log(e); }); clipboard.on('error', function(e) { console.log(e); }); </script>--> </div> </div> </div> </div> <div class="post post-ad"><a rel="nofollow" target="_blank" alt="宝塔服务器面板,一键全能部署及管理,送你¥3188礼包,点我领取" href="https://nie.ge/bt"> <img src="https://img11.360buyimg.com/ddimg/jfs/t1/158349/25/23963/45962/61665accE09cd00b8/ed3ec8cf2a2ae6dd.jpg"> </a></div> <h3 class="main__title">发表评论</h3> <div id="comments" class="commpost"> <div id="respond-post-102" class="respond"> <div class="cancel-comment-reply"> <a id="cancel-comment-reply-link" href="https://nie.su/archives/102.html#respond-post-102" rel="nofollow" style="display:none" onclick="return TypechoComment.cancelReply();">取消回复</a> </div> <form id="new_comment_form" method="post" action="https://nie.su/archives/102.html/comment" _lpchecked="1"> <div id="showfacenamereplace"></div> <div class="new_comment"><textarea name="text" rows="3" class="textarea_box" style="height: auto;" placeholder="凡事都有偶然的凑巧,结果却又如宿命的必然。---《边城》"></textarea></div> <div class="comment_triggered" style="display: block;"> <div class="input_body"> <ul class="ident"> <li> <input type="text" name="author" placeholder="昵称*" value=""> </li> <li> <input type="mail" name="mail" placeholder="邮件*" value=""> </li> </ul> <input type="submit" value="提交评论" class="comment_submit_button c_button"> </div> </div> </form> </div> </div> <div class="faq"> <div class="row"> <div class="col-12 col-xl-6"> <div class="faq__box"> <h3>相关推荐</h3> <ul> <li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2240.html">类flemo应用:Memos的搭建部署及美化修改</a></li> <li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2238.html">超级漂亮哪吒面板最新版透明主题</a></li> <li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2211.html">2021最新注册Yandex免费域名邮箱的方法</a></li> <li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2210.html">免费二级域名PP.UA申请激活保姆级教程</a></li> <li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2212.html">准顶级域名EU.ORG申请使用的方法</a></li> </ul> </div> </div> <div class="col-12 col-xl-6"> <div class="faq__box"> <h3>随机推荐</h3> <ul> <li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/126.html">用新华社区音乐广场外链mp3的方法</a></li><li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/527.html">又见牛人——法国歌手致敬MJ超强翻唱《You Rock My World》</a></li><li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2219.html">win10系统安装Python3以及环境变量的配置</a></li><li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/2222.html">2022年申请Freenom免费域名的方法及相关问题集锦</a></li><li><svg t="1608184042869" class="icon" viewBox="0 0 1024 1024" version="1.1" style="margin-right:8px;margin-bottom:2px;" xmlns="http://www.w3.org/2000/svg" p-id="15804" width="18" height="18"><path d="M401.92 263.68c-10.24-10.24-25.6-10.24-35.84 0-10.24 10.24-10.24 25.6 0 35.84l212.48 212.48-212.48 212.48c-10.24 10.24-10.24 25.6 0 35.84 10.24 10.24 25.6 10.24 35.84 0l230.4-227.84c5.12-5.12 7.68-12.8 7.68-20.48 0-7.68-2.56-15.36-7.68-20.48l-230.4-227.84zM819.2 102.4H204.8C148.48 102.4 102.4 148.48 102.4 204.8v614.4c0 56.32 46.08 102.4 102.4 102.4h614.4c56.32 0 102.4-46.08 102.4-102.4V204.8c0-56.32-46.08-102.4-102.4-102.4z m51.2 716.8c0 28.16-23.04 51.2-51.2 51.2H204.8c-28.16 0-51.2-23.04-51.2-51.2V204.8c0-28.16 23.04-51.2 51.2-51.2h614.4c28.16 0 51.2 23.04 51.2 51.2v614.4z" p-id="15805" fill="#333333"></path></svg><a href="https://nie.su/archives/1802.html">史上超强的中国式英语</a></li> </ul> </div> </div> </div> </div> </div> <div class="col-12 col-md-5 col-lg-4 col-xl-3 fixsidenav"> <div class="user"> <div class="user__head_post"> <div class="user__img" style="border: 5px solid rgb(255 255 255 / 0%);background-color:rgb(255 255 255 / 0%)"> <img src="https://cravatar.cn/avatar/2bb6abe8f8067dcc29839dc67e98cf84?s=96&d=mp&r=g" srcset="https://cravatar.cn/avatar/2bb6abe8f8067dcc29839dc67e98cf84?s=96&d=mp&r=g" class="avatar avatar-140 photo" alt="博主 - <?php $this->author->screenName(); ?>"> </div> </div> <div class="user__title"> <h2>love2wind</h2> <p id="jinrishici-sentence">记录生活,分享世界</p> <script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script> </div> <div class="user__btns"> <a href="https//niege.xyz" target="_blank" class="user__btn user__btn--orange" tittle="我的导航网站,收藏一些常用网站"><span>涅槃导航</span></a> <a href="/jiaocheng.html" target="_blank" rel="noopener" title="本站更多精品教程" class="user__btn user__btn--blue"><span>精品教程</span></a> </div> <div class="sidebox__content"> <div class="sidebox__job"><div class="sidebox__job-title"><a href="https://nie.su/archives/2240.html" style="max-width: 85%;">类flemo应用:Memos的搭建部署及美化修改</a><span><svg t="1608209117213" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5166" width="16" height="16" style="margin-bottom: 3px"><path d="M474.091 874.771v34.187c0 28.815 23.57 52.25 52.736 52.25 29.166 0 52.736-23.435 52.736-52.25v-34.187H474.09z m168.253 0v34.187c0 63.578-51.76 115.042-115.517 115.042S411.31 972.536 411.31 908.958v-34.187H43.9v-31.396c0-76.635 38.352-146.57 100.172-188.192V457.122c0-158.82 101.451-297.54 247.954-347.983C397.762 47.915 449.286 0 512 0c62.713 0 114.238 47.915 119.974 109.139 146.503 50.443 247.954 189.163 247.954 347.983v198.061C941.748 696.805 980.1 766.74 980.1 843.375v31.396H642.344z m190.877-174.658l-16.074-8.987V457.122c0-138.622-93.21-258.805-225.017-294.577l-26.475-7.185 3.572-27.204c0.33-2.509 0.496-5.055 0.496-7.63 0-31.886-25.844-57.734-57.723-57.734-31.88 0-57.723 25.848-57.723 57.733 0 2.576 0.167 5.122 0.496 7.63l3.572 27.205-26.475 7.185C300.063 198.317 206.853 318.5 206.853 457.122v234.004l-16.074 8.987c-42.363 23.685-71.916 64.644-81.085 111.866h804.612c-9.169-47.222-38.722-88.181-81.085-111.866z m-253.794-426.92c-14.675-9.233-19.087-28.616-9.856-43.293s28.61-19.09 43.285-9.857c68.94 43.375 121.919 108.61 149.952 185.23 5.957 16.283-2.411 34.314-18.692 40.273-16.28 5.958-34.308-2.411-40.266-18.695-23.238-63.514-67.215-117.664-124.423-153.658z" fill="#222222" p-id="5167"></path></svg></span></div></div> <div class="sidebox__job"><div class="sidebox__job-title"><a href="https://nie.su/archives/2239.html" style="max-width: 85%;">为博客添加Memos滚动轮播及Memos聚合页</a><span><svg t="1608209117213" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5166" width="16" height="16" style="margin-bottom: 3px"><path d="M474.091 874.771v34.187c0 28.815 23.57 52.25 52.736 52.25 29.166 0 52.736-23.435 52.736-52.25v-34.187H474.09z m168.253 0v34.187c0 63.578-51.76 115.042-115.517 115.042S411.31 972.536 411.31 908.958v-34.187H43.9v-31.396c0-76.635 38.352-146.57 100.172-188.192V457.122c0-158.82 101.451-297.54 247.954-347.983C397.762 47.915 449.286 0 512 0c62.713 0 114.238 47.915 119.974 109.139 146.503 50.443 247.954 189.163 247.954 347.983v198.061C941.748 696.805 980.1 766.74 980.1 843.375v31.396H642.344z m190.877-174.658l-16.074-8.987V457.122c0-138.622-93.21-258.805-225.017-294.577l-26.475-7.185 3.572-27.204c0.33-2.509 0.496-5.055 0.496-7.63 0-31.886-25.844-57.734-57.723-57.734-31.88 0-57.723 25.848-57.723 57.733 0 2.576 0.167 5.122 0.496 7.63l3.572 27.205-26.475 7.185C300.063 198.317 206.853 318.5 206.853 457.122v234.004l-16.074 8.987c-42.363 23.685-71.916 64.644-81.085 111.866h804.612c-9.169-47.222-38.722-88.181-81.085-111.866z m-253.794-426.92c-14.675-9.233-19.087-28.616-9.856-43.293s28.61-19.09 43.285-9.857c68.94 43.375 121.919 108.61 149.952 185.23 5.957 16.283-2.411 34.314-18.692 40.273-16.28 5.958-34.308-2.411-40.266-18.695-23.238-63.514-67.215-117.664-124.423-153.658z" fill="#222222" p-id="5167"></path></svg></span></div></div> <div class="sidebox__job"><div class="sidebox__job-title"><a href="https://nie.su/archives/2238.html" style="max-width: 85%;">超级漂亮哪吒面板最新版透明主题</a><span><svg t="1608209117213" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5166" width="16" height="16" style="margin-bottom: 3px"><path d="M474.091 874.771v34.187c0 28.815 23.57 52.25 52.736 52.25 29.166 0 52.736-23.435 52.736-52.25v-34.187H474.09z m168.253 0v34.187c0 63.578-51.76 115.042-115.517 115.042S411.31 972.536 411.31 908.958v-34.187H43.9v-31.396c0-76.635 38.352-146.57 100.172-188.192V457.122c0-158.82 101.451-297.54 247.954-347.983C397.762 47.915 449.286 0 512 0c62.713 0 114.238 47.915 119.974 109.139 146.503 50.443 247.954 189.163 247.954 347.983v198.061C941.748 696.805 980.1 766.74 980.1 843.375v31.396H642.344z m190.877-174.658l-16.074-8.987V457.122c0-138.622-93.21-258.805-225.017-294.577l-26.475-7.185 3.572-27.204c0.33-2.509 0.496-5.055 0.496-7.63 0-31.886-25.844-57.734-57.723-57.734-31.88 0-57.723 25.848-57.723 57.733 0 2.576 0.167 5.122 0.496 7.63l3.572 27.205-26.475 7.185C300.063 198.317 206.853 318.5 206.853 457.122v234.004l-16.074 8.987c-42.363 23.685-71.916 64.644-81.085 111.866h804.612c-9.169-47.222-38.722-88.181-81.085-111.866z m-253.794-426.92c-14.675-9.233-19.087-28.616-9.856-43.293s28.61-19.09 43.285-9.857c68.94 43.375 121.919 108.61 149.952 185.23 5.957 16.283-2.411 34.314-18.692 40.273-16.28 5.958-34.308-2.411-40.266-18.695-23.238-63.514-67.215-117.664-124.423-153.658z" fill="#222222" p-id="5167"></path></svg></span></div></div> <div class="sidebox__job"><div class="sidebox__job-title"><a href="https://nie.su/archives/2237.html" style="max-width: 85%;">TeraCLOUD更名为InfiniCLOUD,注册就送45G+15G的WebDAV网盘</a><span><svg t="1608209117213" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5166" width="16" height="16" style="margin-bottom: 3px"><path d="M474.091 874.771v34.187c0 28.815 23.57 52.25 52.736 52.25 29.166 0 52.736-23.435 52.736-52.25v-34.187H474.09z m168.253 0v34.187c0 63.578-51.76 115.042-115.517 115.042S411.31 972.536 411.31 908.958v-34.187H43.9v-31.396c0-76.635 38.352-146.57 100.172-188.192V457.122c0-158.82 101.451-297.54 247.954-347.983C397.762 47.915 449.286 0 512 0c62.713 0 114.238 47.915 119.974 109.139 146.503 50.443 247.954 189.163 247.954 347.983v198.061C941.748 696.805 980.1 766.74 980.1 843.375v31.396H642.344z m190.877-174.658l-16.074-8.987V457.122c0-138.622-93.21-258.805-225.017-294.577l-26.475-7.185 3.572-27.204c0.33-2.509 0.496-5.055 0.496-7.63 0-31.886-25.844-57.734-57.723-57.734-31.88 0-57.723 25.848-57.723 57.733 0 2.576 0.167 5.122 0.496 7.63l3.572 27.205-26.475 7.185C300.063 198.317 206.853 318.5 206.853 457.122v234.004l-16.074 8.987c-42.363 23.685-71.916 64.644-81.085 111.866h804.612c-9.169-47.222-38.722-88.181-81.085-111.866z m-253.794-426.92c-14.675-9.233-19.087-28.616-9.856-43.293s28.61-19.09 43.285-9.857c68.94 43.375 121.919 108.61 149.952 185.23 5.957 16.283-2.411 34.314-18.692 40.273-16.28 5.958-34.308-2.411-40.266-18.695-23.238-63.514-67.215-117.664-124.423-153.658z" fill="#222222" p-id="5167"></path></svg></span></div></div> <div class="sidebox__job"><div class="sidebox__job-title"><a href="https://nie.su/archives/2236.html" style="max-width: 85%;">Chevereto V4.0.7 开心版!</a><span><svg t="1608209117213" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5166" width="16" height="16" style="margin-bottom: 3px"><path d="M474.091 874.771v34.187c0 28.815 23.57 52.25 52.736 52.25 29.166 0 52.736-23.435 52.736-52.25v-34.187H474.09z m168.253 0v34.187c0 63.578-51.76 115.042-115.517 115.042S411.31 972.536 411.31 908.958v-34.187H43.9v-31.396c0-76.635 38.352-146.57 100.172-188.192V457.122c0-158.82 101.451-297.54 247.954-347.983C397.762 47.915 449.286 0 512 0c62.713 0 114.238 47.915 119.974 109.139 146.503 50.443 247.954 189.163 247.954 347.983v198.061C941.748 696.805 980.1 766.74 980.1 843.375v31.396H642.344z m190.877-174.658l-16.074-8.987V457.122c0-138.622-93.21-258.805-225.017-294.577l-26.475-7.185 3.572-27.204c0.33-2.509 0.496-5.055 0.496-7.63 0-31.886-25.844-57.734-57.723-57.734-31.88 0-57.723 25.848-57.723 57.733 0 2.576 0.167 5.122 0.496 7.63l3.572 27.205-26.475 7.185C300.063 198.317 206.853 318.5 206.853 457.122v234.004l-16.074 8.987c-42.363 23.685-71.916 64.644-81.085 111.866h804.612c-9.169-47.222-38.722-88.181-81.085-111.866z m-253.794-426.92c-14.675-9.233-19.087-28.616-9.856-43.293s28.61-19.09 43.285-9.857c68.94 43.375 121.919 108.61 149.952 185.23 5.957 16.283-2.411 34.314-18.692 40.273-16.28 5.958-34.308-2.411-40.266-18.695-23.238-63.514-67.215-117.664-124.423-153.658z" fill="#222222" p-id="5167"></path></svg></span></div></div> </div> <style> // 侧栏社交css .sidebar-box-two{ border-bottom: rgba(133,153,171,0.2); min-height:unset; border-bottom: 1px solid rgba(133,153,171,0.2); border-left: 1px solid rgba(133,153,171,0.2); border-right: 1px solid rgba(133,153,171,0.2); } .social{ display: flex; border-top: rgba(133,153,171,0.2); margin: 5px 15px; justify-content: space-around; } 1px solid ; .social img { width: 20px; height: auto; margin: 15px 0; border-radius: 50px; } .social svg { width: 25px; height: auto; margin: 10px 0; border-radius: 5px; } .texiao:hover{ transform: scale(1.4); transition: all .5s; } a#weixin { position:relative; } #weixin img { visibility:hidden; z-index:999; position:absolute; bottom:30px; width:6.5rem; max-width:7.5rem; left:-30px; height:6.5rem; transform:scale(0); transform-origin:bottom; opacity:0; border:.3125rem solid #0085ba; border-radius:.25rem; -webkit-transition:all .4s ease-in-out; -o-transition:all .4s ease-in-out; transition:all .4s ease-in-out; } #weixin:hover img { visibility:visible; transform:scale(1); opacity:1; } </style> <div class="sidebar-box-two" style="border-bottom: 1px solid rgba(133,153,171,0.2);border-left: 1px solid rgba(133,153,171,0.2);border-right: 1px solid rgba(133,153,171,0.2);margin-top: -5px;"> <div class="social"> <a href="mailto:love2wind@gmail.com" rel="nofollow" target="_blank" class="texiao" tittle="点击给本站发送Email"> <svg t="1665219529172" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5699" width="200" height="200"><path d="M900 467v389.5c0 6.5-5.5 11.5-11.5 11.5H144c-6.5 0-11.5-5.5-11.5-11.5V467l364-252.5c11-7.5 30-7 41.5 1l363 251.5h-1z" fill="#9C0000" p-id="5700"></path><path d="M196 288h640v419H196z" fill="#E8E8D0" p-id="5701"></path><path d="M560.5 600c-15 17.5-36 29.5-59.5 29.5h-5c-21.5-1.5-39.5-13-52-30.5-12-16.5-18-36.5-19-56.5v-7.5c0-3 0-6 0.5-9 2-25.5 11-51 27.5-70.5 15.5-18 36.5-31 61-31h5c18.5 1.5 35 10.5 47 24l1.5-24 29 1.5-9.5 154.5c-0.5 8 2.5 15 9 19.5 3.5 2.5 7.5 3 11.5 3 23.5-1 42.5-21 51.5-41.5 10-22 13-52 7-75v-1c-7-25.5-20.5-49-39.5-68-28.5-28.5-67-44.5-108-44.5-40.5 0-79 16-108 44.5-28.5 28.5-44.5 67-44.5 108 0 40.5 16 79 44.5 108 28.5 28.5 67 44.5 108 44.5 32.5 0 64-10 90-29.5l11.5-8.5v36l-3.5 2c-29.5 19-63.5 29-98.5 29-48.5 0-94-19-128.5-53-34-34-53-80-53-128.5s19-94 53-128.5c34-34 80-53 128.5-53s94 19 128.5 53c22.5 22.5 38.5 50.5 47 81v0.5c6.5 29.5 4.5 65-8 92.5-14 31-42 59-78 60.5-10.5 0.5-20.5-2-29-8-9-6-14.5-15-18-24.5v1z m-106.5-62.5c0.5 15.5 4.5 31.5 13.5 44 7.5 10 18 17.5 31 18.5h2.5c15.5 0 29-9 38.5-20.5 12.5-15 19.5-34.5 21-54v-9.5c-0.5-15.5-4.5-31.5-13.5-44-7.5-10-18-17.5-31-18.5h-2.5c-15.5 0-29 9-38.5 20.5-12.5 15-19.5 34.5-21 54v9.5z" fill="#37474F" p-id="5702"></path><path d="M134 862.5l304-208-306-187.5v389c0 2.5 0.5 4.5 2 6v0.5zM900 856.5V467h-0.5l-308 189 306.5 206.5c1-2 2-4 2-6z" fill="#BF0000" p-id="5703"></path><path d="M898.5 862.5c-2 3.5-6 5.5-10 5.5H144c-4 0-8-2-10-5.5l362-251.5c11-7.5 29.5-7 41.5 1l361 250.5z" fill="#D50000" p-id="5704"></path></svg> </a> <a href="https://qm.qq.com/cgi-bin/qm/qr?k=LE9OxXbQf7Wt1Gy7C751jHdcWmQXchm5&jump_from=webapi" rel="nofollow" target="_blank" class="texiao" tittle="点击加入QQ群聊"> <svg t="1607513026499" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21072" width="200" height="200"><path d="M511.037 986.94c-85.502 0-163.986-26.686-214.517-66.544-25.66 7.149-58.486 18.655-79.202 32.921-17.725 12.202-15.516 24.647-12.32 29.67 14.027 22.069 240.622 14.092 306.04 7.219v-3.265z" fill="#FAAD08" p-id="21073"></path><path d="M495.627 986.94c85.501 0 163.986-26.686 214.518-66.544 25.66 7.149 58.485 18.655 79.203 32.921 17.724 12.202 15.512 24.647 12.32 29.67-14.027 22.069-240.623 14.092-306.042 7.219v-3.265z" fill="#FAAD08" p-id="21074"></path><path d="M496.137 472.026c140.73-0.935 253.514-27.502 291.73-37.696 9.11-2.432 13.984-6.789 13.984-6.789 0.032-1.25 0.578-22.348 0.578-33.232 0-183.287-88.695-367.458-306.812-367.47C277.5 26.851 188.8 211.021 188.8 394.31c0 10.884 0.55 31.982 0.583 33.232 0 0 3.965 4.076 11.231 6.048 35.283 9.579 150.19 37.482 294.485 38.437h1.037zM883.501 626.967c-8.66-27.825-20.484-60.273-32.455-91.434 0 0-6.886-0.848-10.366 0.158-107.424 31.152-237.624 51.006-336.845 49.808h-1.026c-98.664 1.186-227.982-18.44-335.044-49.288-4.09-1.176-12.168-0.677-12.168-0.677-11.97 31.16-23.793 63.608-32.453 91.433-41.3 132.679-27.92 187.587-17.731 188.818 21.862 2.638 85.099-99.88 85.099-99.88 0 104.17 94.212 264.125 309.947 265.596a765.877 765.877 0 0 1 5.725 0c215.738-1.471 309.947-161.424 309.947-265.595 0 0 63.236 102.519 85.102 99.88 10.186-1.231 23.566-56.14-17.732-188.819" p-id="21075"></path><path d="M429.208 303.911c-29.76 1.323-55.195-32.113-56.79-74.62-1.618-42.535 21.183-78.087 50.95-79.417 29.732-1.305 55.149 32.116 56.765 74.64 1.629 42.535-21.177 78.08-50.925 79.397m220.448-74.62c-1.593 42.507-27.03 75.941-56.79 74.62-29.746-1.32-52.553-36.862-50.924-79.397 1.614-42.526 27.03-75.948 56.764-74.639 29.77 1.33 52.57 36.881 50.951 79.417" fill="#FFFFFF" p-id="21076"></path><path d="M695.405 359.069c-7.81-18.783-86.466-39.709-183.843-39.709h-1.045c-97.376 0-176.033 20.926-183.842 39.709a6.66 6.66 0 0 0-0.57 2.672c0 1.353 0.418 2.575 1.072 3.612 6.58 10.416 93.924 61.885 183.341 61.885h1.045c89.416 0 176.758-51.466 183.34-61.883a6.775 6.775 0 0 0 1.069-3.622 6.66 6.66 0 0 0-0.567-2.664" fill="#FAAD08" p-id="21077"></path><path d="M464.674 239.335c1.344 16.946-7.87 32-20.55 33.645-12.701 1.647-24.074-10.755-25.426-27.71-1.326-16.954 7.873-32.008 20.534-33.64 12.722-1.652 24.114 10.76 25.442 27.705m77.97 8.464c2.702-4.392 21.149-27.488 59.328-19.078 10.028 2.208 14.667 5.457 15.646 6.737 1.445 1.888 1.84 4.576 0.375 8.196-2.903 7.174-8.894 6.979-12.217 5.575-2.144-0.907-28.736-16.948-53.232 6.99-1.685 1.648-4.7 2.212-7.558 0.258-2.856-1.956-4.038-5.923-2.342-8.678" p-id="21078"></path><path d="M503.821 589.328h-1.031c-67.806 0.802-150.022-8.004-229.638-23.381-6.817 38.68-10.934 87.294-7.399 145.275 8.928 146.543 97.728 238.652 234.793 239.996h5.57c137.065-1.344 225.865-93.453 234.796-239.996 3.535-57.986-0.584-106.6-7.403-145.283-79.631 15.385-161.861 24.196-229.688 23.389" fill="#FFFFFF" p-id="21079"></path><path d="M310.693 581.35v146.633s69.287 13.552 138.7 4.17V596.897c-43.974-2.413-91.4-7.79-138.7-15.546" fill="#EB1C26" p-id="21080"></path><path d="M806.504 427.238s-130.112 43.08-302.66 44.309h-1.025c-172.264-1.224-302.217-44.161-302.66-44.309L156.58 541.321c108.998 34.464 244.093 56.677 346.238 55.387l1.024-0.002c102.152 1.297 237.226-20.917 346.24-55.385l-43.579-114.083z" fill="#EB1C26" p-id="21081"></path></svg> </a> <a href="javascript:void(0)" rel="nofollow" target="_blank" class="texiao" id="weixin" tittle="点击关注本站公众号"> <svg t="1607513045902" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21209" width="200" height="200"><path d="M683.058 364.695c11 0 22 1.016 32.943 1.976C686.564 230.064 538.896 128 370.681 128c-188.104 0.66-342.237 127.793-342.237 289.226 0 93.068 51.379 169.827 136.725 229.256L130.72 748.43l119.796-59.368c42.918 8.395 77.37 16.79 119.742 16.79 11 0 21.46-0.48 31.914-1.442a259.168 259.168 0 0 1-10.455-71.358c0.485-148.002 128.744-268.297 291.403-268.297l-0.06-0.06z m-184.113-91.992c25.99 0 42.913 16.79 42.913 42.575 0 25.188-16.923 42.579-42.913 42.579-25.45 0-51.38-16.85-51.38-42.58 0-25.784 25.93-42.574 51.38-42.574z m-239.544 85.154c-25.384 0-51.374-16.85-51.374-42.58 0-25.784 25.99-42.574 51.374-42.574 25.45 0 42.918 16.79 42.918 42.575 0 25.188-16.924 42.579-42.918 42.579z m736.155 271.655c0-135.647-136.725-246.527-290.983-246.527-162.655 0-290.918 110.88-290.918 246.527 0 136.128 128.263 246.587 290.918 246.587 33.972 0 68.423-8.395 102.818-16.85l93.809 50.973-25.93-84.677c68.907-51.93 120.286-119.815 120.286-196.033z m-385.275-42.58c-16.923 0-34.452-16.79-34.452-34.179 0-16.79 17.529-34.18 34.452-34.18 25.99 0 42.918 16.85 42.918 34.18 0 17.39-16.928 34.18-42.918 34.18z m188.165 0c-16.984 0-33.972-16.79-33.972-34.179 0-16.79 16.927-34.18 33.972-34.18 25.93 0 42.913 16.85 42.913 34.18 0 17.39-16.983 34.18-42.913 34.18z" fill="#09BB07" p-id="21210"></path></svg><img class="qrcode" src="https://imgbed.top/images/2020/12/15/e61c8fdfb90f4c10a60bd989cccdf06e.png" alt="微信二维码"> </a> <a href="https://t.me/niepanxiaomibot" rel="nofollow" target="_blank" class="texiao" tittle="点击联系站长Telegram"> <svg t="1635153401829" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4651" width="200" height="200"><path d="M1024 156.514L0 153.822l188.52 187.374-49.272 338.52 210.626-80.504 170.57 270.966L1024 156.514zM264.49 419.822L139.248 679.716l103.034-324.986L1024 156.514 264.49 419.822z" fill="#85D3FD" p-id="4652"></path><path d="M1024 156.514L246 418.116l-106.752 261.6 210.626-80.504 170.57 270.966L1024 156.514z" fill="#22B8F9" p-id="4653"></path><path d="M246 418.116l-106.752 261.6L188.52 341.194 1024 156.514z" fill="#0082FF" p-id="4654"></path><path d="M349.874 599.212L246 418.116l-106.752 261.6z" fill="#00317E" p-id="4655"></path><path d="M520.666 331.01v538.854L1024 156.514z" fill="#85D3FD" p-id="4656"></path><path d="M520.666 284.142L1024 156.514l-503.334-1.324z" fill="#22B8F9" p-id="4657"></path><path d="M520.666 325.76l-0.222 544.418L1024 156.514z" fill="#0082FF" p-id="4658"></path><path d="M520.666 267.774v57.986L1024 156.514z" fill="#00317E" p-id="4659"></path><path d="M766.79 340.76c-119.596 0-216.894 97.298-216.894 216.896 0 119.596 97.298 216.894 216.894 216.894 119.598 0 216.896-97.298 216.896-216.894 0-119.598-97.3-216.896-216.896-216.896z" fill="#FFDA2D" p-id="4660"></path><path d="M766.79 340.76v433.79c119.598 0 216.896-97.298 216.896-216.894 0-119.598-97.3-216.896-216.896-216.896z" fill="#FDBF00" p-id="4661"></path><path d="M804.27 472.81v173.226h-58.402v-129.178h-29.696v-44.048h88.098z" fill="#FC1D5A" p-id="4662"></path><path d="M766.79 472.81h37.48v173.226h-37.48z" fill="#DD0057" p-id="4663"></path></svg> </a> <a href="https://twitter.com/love2wind" rel="nofollow" target="_blank" class="texiao" tittle="点击进入本站Twitter"> <svg t="1607513107575" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21598" width="200" height="200"> <path d="M996.12 211.772c-27.41 40.139-60.586 74.338-99.524 102.58 0.419 5.715 0.628 14.311 0.628 25.788 0 53.242-7.782 106.353-23.346 159.333-15.565 52.986-39.201 103.845-70.903 152.58-31.707 48.735-69.47 91.84-113.279 129.306-43.813 37.474-96.638 67.37-158.477 89.693-61.84 22.323-127.951 33.491-198.335 33.491-110.943 0-212.483-29.692-304.613-89.063 14.305 1.622 30.264 2.434 47.876 2.434 92.13 0 174.226-28.247 246.284-84.738-42.974-0.84-81.467-14.043-115.478-39.62-34.01-25.57-57.358-58.222-70.042-97.94 13.519 2.04 26.018 3.063 37.495 3.063 17.612 0 35.008-2.256 52.2-6.764-45.855-9.43-83.828-32.252-113.908-68.466-30.08-36.208-45.12-78.268-45.12-126.163v-2.44c27.829 15.564 57.726 23.95 89.694 25.157-27.04-18.026-48.532-41.557-64.463-70.591-15.932-29.03-23.926-60.552-23.973-94.563 0-36.055 9.01-69.41 27.042-100.067 49.525 60.998 109.815 109.812 180.881 146.446 71.06 36.63 147.106 56.99 228.126 61.078-3.249-15.565-4.874-30.71-4.874-45.435 0-54.868 19.337-101.641 58.013-140.316s85.45-58.012 140.32-58.012c57.332 0 105.649 20.886 144.955 62.65 44.653-8.595 86.63-24.553 125.93-47.873-15.144 47.06-44.201 83.511-87.176 109.344 38.1-4.088 76.173-14.33 114.218-30.735l-0.151-0.157z" fill="#00ACED" p-id="21599"> </path> </svg> </a> <a href="https://love2wind.cn/feed" rel="nofollow" target="_blank" class="texiao" tittle="订阅本站RSS"> <svg t="1608221779426" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="20522" width="28" height="28" style="width:22px;height:22px"><path d="M245.323116 913.111046a110.883142 110.883142 0 1 1-110.883141-110.883142A110.883142 110.883142 0 0 1 245.323116 913.111046zM155.901228 1.007785A118.484002 118.484002 0 0 0 61.114026 30.517008 115.801345 115.801345 0 0 0 21.768395 117.25624a117.589783 117.589783 0 0 0 104.1765 114.907126c327.731221 41.581178 603.597746 337.567629 641.15494 688.548541a114.460017 114.460017 0 0 0 114.907126 102.835171 118.036893 118.036893 0 0 0 89.421889-38.898521 113.118689 113.118689 0 0 0 28.615004-89.421889C949.520487 440.963475 586.46762 56.449355 155.901228 1.007785z m7.60086 381.831463A110.883142 110.883142 0 0 0 66.479339 403.406282a117.142674 117.142674 0 0 0-44.710944 92.551655 114.460017 114.460017 0 0 0 89.421889 112.22447c134.132833 32.19188 250.381287 163.642056 279.89051 318.789032a116.248455 116.248455 0 0 0 112.22447 93.445873 116.695564 116.695564 0 0 0 89.421888-42.028287 112.671579 112.671579 0 0 0 24.59102-93.445874C571.713009 643.056943 383.927043 436.492381 161.266541 383.733467z" fill="#FFAD08" p-id="20523"></path><path d="M62.008245 997.614731l155.146976-155.146977A109.541813 109.541813 0 0 1 245.323116 913.111046a110.883142 110.883142 0 0 1-110.883141 110.883142 109.541813 109.541813 0 0 1-72.43173-26.379457z m513.728749-513.28164a804.796995 804.796995 0 0 1 191.362841 436.378816 114.460017 114.460017 0 0 0 114.907126 102.835171 118.036893 118.036893 0 0 0 89.421889-38.898521 113.118689 113.118689 0 0 0 28.615004-89.421889A1035.058358 1035.058358 0 0 0 737.143502 320.691036z m-185.997528 444.426785a116.248455 116.248455 0 0 0 112.22447 93.445874 116.695564 116.695564 0 0 0 89.421888-42.028288 112.671579 112.671579 0 0 0 24.591019-93.445873 670.664163 670.664163 0 0 0-143.52213-301.351764l-162.747837 164.983384a439.061472 439.061472 0 0 1 80.03259 178.396667z" fill="#D68650" p-id="20524"></path></svg> </a> <a href="https://github.com/love2wind" rel="nofollow" target="_blank" class="texiao" tittle="点击访问本站Github"> <svg t="1608222027422" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29639" width="30" height="30" style="width:24px;height:24px"><path d="M0 556.416C0 602.816 4.352 644.8 13.024 682.336 21.696 719.904 33.728 752.544 49.088 780.224 64.416 807.936 83.968 832.32 107.648 853.344 131.36 874.368 157.056 891.552 184.768 904.928 212.48 918.272 244.096 929.12 279.648 937.472 315.2 945.824 351.52 951.648 388.576 955.008 425.632 958.336 466.336 960 510.752 960 555.488 960 596.384 958.336 633.44 955.008 670.496 951.648 706.88 945.824 742.592 937.472 778.304 929.12 810.112 918.272 837.984 904.928 865.856 891.552 891.712 874.368 915.584 853.344 939.456 832.32 959.168 807.936 974.688 780.224 990.208 752.544 1002.304 719.904 1010.976 682.336 1019.648 644.8 1024 602.816 1024 556.416 1024 473.632 996.288 402.016 940.896 341.6 943.872 333.568 946.624 324.48 949.152 314.304 951.648 304.128 953.984 289.6 956.16 270.752 958.336 251.872 957.504 230.112 953.664 205.408 949.824 180.704 942.72 155.488 932.352 129.792L924.864 128.288C919.52 127.296 910.752 127.52 898.56 129.024 886.368 130.528 872.192 133.536 856 138.048 839.808 142.56 818.944 151.232 793.408 164.096 767.872 176.928 740.928 193.056 712.544 212.416 663.808 199.04 596.864 192.384 511.744 192.384 426.944 192.384 360.192 199.04 311.456 212.416 283.072 193.056 255.968 176.928 230.08 164.096 204.224 151.232 183.616 142.56 168.256 138.048 152.896 133.536 138.528 130.624 125.184 129.28 111.84 127.936 103.392 127.52 99.904 128.032 96.384 128.544 93.632 129.12 91.648 129.792 81.28 155.488 74.176 180.672 70.368 205.408 66.528 230.112 65.696 251.872 67.84 270.752 70.016 289.6 72.352 304.128 74.848 314.304 77.376 324.48 80.128 333.568 83.136 341.6 27.712 402.016 0 473.632 0 556.416ZM125.696 682.08C125.696 634.016 147.552 589.952 191.296 549.888 204.288 537.888 219.488 528.8 236.832 522.592 254.208 516.448 273.824 512.928 295.68 512.096 317.536 511.264 338.496 511.424 358.528 512.608 378.56 513.76 403.264 515.36 432.64 517.344 462.016 519.36 487.392 520.352 508.736 520.352 530.112 520.352 555.488 519.36 584.864 517.344 614.24 515.36 638.944 513.76 658.976 512.608 679.008 511.424 699.936 511.264 721.792 512.096 743.68 512.928 763.296 516.448 780.64 522.592 798.016 528.768 813.184 537.888 826.208 549.888 869.952 589.28 891.808 633.344 891.808 682.08 891.808 710.816 888.224 736.256 881.024 758.464 873.856 780.672 864.672 799.264 853.504 814.304 842.304 829.312 826.784 842.08 806.944 852.608 787.072 863.104 767.712 871.2 748.832 876.896 729.984 882.56 705.792 886.976 676.224 890.144 646.688 893.312 620.32 895.232 597.12 895.904 573.92 896.576 544.448 896.928 508.736 896.928 473.024 896.928 443.552 896.576 420.352 895.904 397.152 895.232 370.784 893.312 341.248 890.144 311.712 886.976 287.52 882.56 268.64 876.896 249.792 871.2 230.432 863.104 210.56 852.608 190.688 842.08 175.168 829.312 164 814.304 152.8 799.264 143.616 780.672 136.448 758.464 129.28 736.256 125.696 710.816 125.696 682.08ZM640 672A2 3 2520 1 0 768 672 2 3 2520 1 0 640 672zM256 672A2 3 2520 1 0 384 672 2 3 2520 1 0 256 672z" p-id="29640" fill="#000000"></path></svg> </a> </div> </div> </div> <!-- <script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script>--> <!-- <script type="text/javascript">--> <!-- </script>--> <!--<div class="sidebox fixside s_ping" > <h4 class="sidebox__title">小说物语</h4> <i class="bg-primary"></i> <div style="padding:30px 20px 20px 20px;background-color: #fafafa;"> <div id="hitokoto" style="color:red;font-size:14px;margin-bottom:5px;font-family:黑体,'ht',微软雅黑">漫漫人生路,来去也匆匆。</div> <div style="font-size:12px;text-align:right;font-weight:bold;font-family:'kt',楷体;color:#000">——《<span id="from">书名</span>》 </div> <script type="text/javascript"> fetch('https://v1.hitokoto.cn/?c=d') .then(function (res){ return res.json(); }) .then(function (data) { var hitokoto = document.getElementById('hitokoto'); hitokoto.innerText = data.hitokoto; var from = document.getElementById('from'); from.innerText = data.from; }) .catch(function (err) { console.error(err); })</script> </div> </div>--> <div class="sidebox sidebox--desk"> <h4 class="sidebox__title">热门文章</h4> <i class="bg-primary"></i> <div class="sidebox__content"> <div class='sidebox__job'><div class='sidebox__job-title'><a href='https://nie.su/archives/2214.html'>利用OCI脚本创建甲骨文ARM免费VPS的方法</a><span>22,661 阅读</span></div><p class='sidebox__job-description'>## 前言 前面我们给大家介绍了怎....</p></div><div class='sidebox__job'><div class='sidebox__job-title'><a href='https://nie.su/archives/701.html'>我竟然有25个Google Wave邀请,还有需要的童鞋吗?</a><span>16,901 阅读</span></div><p class='sidebox__job-description'> 话说注册Google Wave已经一段....</p></div><div class='sidebox__job'><div class='sidebox__job-title'><a href='https://nie.su/archives/2193.html'>甲骨文全区域登录地址汇总及测速地址分享</a><span>15,511 阅读</span></div><p class='sidebox__job-description'>由于甲骨文云各区域登录时的服务器是不同的....</p></div><div class='sidebox__job'><div class='sidebox__job-title'><a href='https://nie.su/archives/2182.html'>哪吒面板搭建过程详解,教你搭建一款便携服务器监控探针</a><span>15,343 阅读</span></div><p class='sidebox__job-description'>![Snipaste_2021-02-0....</p></div><div class='sidebox__job'><div class='sidebox__job-title'><a href='https://nie.su/archives/1976.html'>iframe嵌入BiliBili视频方法B站视频外链</a><span>15,017 阅读</span></div><p class='sidebox__job-description'>## iframe嵌入BiliBili视....</p></div> </div> </div> <div class="sidebox s_ping"> <h4 class="sidebox__title">最新评论</h4> <i class="bg-primary"></i> <div class="sidebox__content" id="rctrly"> <div class="post__comment commentping"> <a href="https://nie.su/archives/2232.html/comment-page-1#comment-958" class="post__comment-img"> <img src="https://cravatar.cn/avatar/0fd506c2832a354d84d859663ccdd592?s=96&d=mp&r=g" alt=""> </a> <div class="post__comment-title"> <h5><a href="https://nie.su/archives/2232.html/comment-page-1#comment-958" class="coment_link">xiaohui</a> <span class="autlv aut-1">Lv.1</span></h5> <p>4月3日</p> </div> <div class="post__comment-text" ><p>见到过!</p></div> </div> <div class="post__comment commentping"> <a href="https://nie.su/archives/2230.html/comment-page-1#comment-957" class="post__comment-img"> <img src="https://cravatar.cn/avatar/0fd506c2832a354d84d859663ccdd592?s=96&d=mp&r=g" alt=""> </a> <div class="post__comment-title"> <h5><a href="https://nie.su/archives/2230.html/comment-page-1#comment-957" class="coment_link">xiaohui</a> <span class="autlv aut-1">Lv.1</span></h5> <p>4月3日</p> </div> <div class="post__comment-text" ><p>可以可以:真棒:</p></div> </div> <div class="post__comment commentping"> <a href="https://nie.su/archives/2232.html/comment-page-1#comment-956" class="post__comment-img"> <img src="https://q2.qlogo.cn/headimg_dl?dst_uin=53969412&spec=100" alt=""> </a> <div class="post__comment-title"> <h5><a href="https://nie.su/archives/2232.html/comment-page-1#comment-956" class="coment_link">观棋</a> <span class="autlv aut-1">Lv.1</span></h5> <p>3月29日</p> </div> <div class="post__comment-text" ><p>不错不错!!</p></div> </div> </div> </div> <div class="sidebox sidebox--desk fixside" style="z-index:1;"> <h4 class="sidebox__title">本文目录</h4> <i class="bg-primary"></i> <div class="sidebox__content" style="overflow-y: auto;max-height: 420px;"> <div class="index-menu"><ul class="index-menu-list"><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link current" href="#menu_index_1" title="【内容简介】 本期视频主要介绍Sigil的基本操作。有以下知识点:">【内容简介】 本期视频主要介绍Sigil的基本操作。有以下知识点:</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_2" title="【相关知识】">【相关知识】</a><ul class="index-menu-list"><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_3" title="《Sigil正则表达式的入门》 正则表达式,是一种用特殊符号表示文字的方法,主要用在查找和替换方面。下面的例子可以让你知道正则表达式是干什么用的。在一个文本中,有这样的一些内容:">《Sigil正则表达式的入门》 正则表达式,是一种用特殊符号表示文字的方法,主要用在查找和替换方面。下面的例子可以让你知道正则表达式是干什么用的。在一个文本中,有这样的一些内容:</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_4" title="1. 元字符 我们前面提到,正则表达式一个重要作用就是用特别的符号来代表一类字符,而这些符号就叫做“元字符”。这些元字符在大多数环境下都是通用的。注意,元字符中所有符号都是半角符号,也就是通常说的英文符号。以下是一些常见的元字符,实际上还有更多。这些元字符都经过测试,在Sigil下有效。">1. 元字符 我们前面提到,正则表达式一个重要作用就是用特别的符号来代表一类字符,而这些符号就叫做“元字符”。这些元字符在大多数环境下都是通用的。注意,元字符中所有符号都是半角符号,也就是通常说的英文符号。以下是一些常见的元字符,实际上还有更多。这些元字符都经过测试,在Sigil下有效。</a></li></ul></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_5" title=""></a><ul class="index-menu-list"><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_6" title="2. 常用正则表达式 在这一部分,我们回来看一些很常用的正则表达式,这些表达式往往是更复杂表达式的组成部分。">2. 常用正则表达式 在这一部分,我们回来看一些很常用的正则表达式,这些表达式往往是更复杂表达式的组成部分。</a><ul class="index-menu-list"><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_7" title="2.1 所有字符">2.1 所有字符</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_8" title="2.2 空白行">2.2 空白行</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_9" title="2.3 行尾空白字符">2.3 行尾空白字符</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_10" title="2.4 压缩重复符号 查找:">2.4 压缩重复符号 查找:</a></li></ul></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_11" title="3. 应用实例 在这一部分,我们会看一些 Sigil 使用过程中实际会用到的例子,方便各位了解正则表达式的使用。">3. 应用实例 在这一部分,我们会看一些 Sigil 使用过程中实际会用到的例子,方便各位了解正则表达式的使用。</a><ul class="index-menu-list"><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_12" title="3.1 添加标签 你打算为所有的图片添加一个,并且class为images">3.1 添加标签 你打算为所有的图片添加一个,并且class为images</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_13" title="3.2 拼接断行 在一些文本中,会存在断行,我们要把这些断行重新拼接起来。">3.2 拼接断行 在一些文本中,会存在断行,我们要把这些断行重新拼接起来。</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_14" title="3.3 识别章节标题 这是很常见的一个需求,我们往往要为章节标题添加,之类的标签。通过3.1我们已经了解到如何添加标签,因此这里着重讲解如何识别标题。">3.3 识别章节标题 这是很常见的一个需求,我们往往要为章节标题添加,之类的标签。通过3.1我们已经了解到如何添加标签,因此这里着重讲解如何识别标题。</a></li></ul></li></ul></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_15" title="序章">序章</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_16" title="第一章 XXXX">第一章 XXXX</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_17" title="第二章 CCCC">第二章 CCCC</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_18" title="第三章 AAAA">第三章 AAAA</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_19" title="终章">终章</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_20" title="后记">后记</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_21" title="\1">\1</a><ul class="index-menu-list"><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_22" title="3.5 自动插入内容">3.5 自动插入内容</a></li></ul></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_23" title="XXXX">XXXX</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_24" title="XXXX">XXXX</a></li><li class="index-menu-item"><svg t='1667068438528' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2946' width='16' height='16' style='margin-right:5px;'><path d='M389.1 735.4L389.1 158c0-13.00000001 10.8 26.7 24.00000001 21 13.2-5.7 25.8 19.5 37.29999998 27.6L806.7 457.7c9.1 6.4 14.4 16.1 14.4 26.4 0 10.39999999-1.4 49.8-10.5 56.3L450.4 761.8c-11.5 8.1-26.80000001 9.6-39.9 3.9s-21.4-17.3-21.4-30.3z m33.9 7.2' fill='#25B195' p-id='2947'></path><path d='M292.4 870.8L292.4 147c0-18.80000001 10.5-35.5 27.40000001-43.7 16.9-8.2 36.5-6 51.29999999 5.59999999L828.5 470.8c11.69999999 9.3 18.4 23.1 18.4 38.1 0 14.9-6.7 28.8-18.4 38.1L371 908.8c-14.7 11.6-34.4 13.8-51.3 5.6s-27.3-24.9-27.3-43.6z m513.20000001-371L348.1 138c-5.1-4.1-10.2-2.3-12.2-1.3-2 0.9-6.5 3.9-6.5 10.4L329.40000001 870.8c0 6.5 4.6 9.5 6.49999999 10.4 2 0.9 7.10000001 2.7 12.2-1.3L805.6 518c3.8-3 4.4-7 4.4-9.1 0-2.1-0.59999999-6.1-4.39999999-9.1z' fill='#595857' p-id='2948'></path></svg><a data-scroll class="index-menu-link " href="#menu_index_25" title="(.*)">(.*)</a></li></ul></div> </div> </div> </div> </div> </div> </main> <style> .Copyrightnew{background:#e8eef3;padding:12px 20px;border-radius:0 5px 5px 0;font-size:14px;border-radius:5px;margin:0 0 20px 0;color:#999;width:100%;line-height:1.5rem;position:relative} .Copyrightnew::before{opacity: 0.8;position:absolute;top:10px;right:10px;content:'';background-image:url(https://tool.oschina.net/action/qrcode/generate?data=https://nie.su/archives/102.html&output=image/jpeg&type=4&margin=10&size=4);background-repeat:no-repeat;background-size:100px;width:100px;height:100px} </style> <footer class="footer"> <div class="container"> <div class="row"> <div class="col-12"> <div class="footer__content"> <a href="/" class="footer__logo"> <img src="https://cdn2.imgbed.top/images/2022/10/12/footlogo.png" alt="涅槃博客"> </a> <span class="footer__copyright">© 2009-2023 涅槃博客 </a>  本站由 <a href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral"><img src="https://cdn2.imgbed.top/images/2022/10/12/upyun_logo.png" width="60px" height="auto" title="" style="margin: 0px -8px 3px -8px;"></a> 提供 CDN/云存储加速 <a href="https://icp.gov.moe/?keyword=20228955" target="_blank">萌ICP备20228955号</a> 页面执行: 2.436 s</span> <nav class="footer__nav"> <a href="/amp_sitemap.xml">地图</a> <a href="/donate.html">捐赠</a> <a href="/links.html">友链</a> <a href="/archives.html">归档</a> <a href="https://www.travellings.cn/go.html" target="_blank">开往</a> <a href="https://www.foreverblog.cn/go.html" target="_blank">虫洞</a> <a href="/about.html">关于</a> </nav> </div> </div> </div> </div> </footer> <div class="chenyuyc"> <div class="footer-fav"> <div class="container"> <div class="fl site-info"> <h2><a href="https://nie.su/" target="_blank">錯愛涅槃</a></h2> <div class="site-p"> <p>NIE.SU【白茶清欢无别事,我在等风也等你】</p> <p>风风雨雨中,恭迎本站第963,571位来访的小伙伴。</p> <!--<script type="text/javascript"> var colorStr=""; var randomArr=['0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f']; for(var i=0;i<6;i++){ colorStr+=randomArr[Math.ceil(Math.random()*(15-0)+0)]; } var now =new Date(); function StorageTime() { var grt= new Date("11/27/2011 00:00:00"); now.setTime(now.getTime()+250); years = Math.floor((now - grt ) / 1000 / 60 / 60 / 24 /365); days = Math.floor((now - grt ) / 1000 / 60 / 60 / 24 - (years * 365)); hours = Math.floor((now - grt ) / 1000 / 60 / 60 - (24 * Math.floor((now - grt ) / 1000 / 60 / 60 / 24))); if(String(hours).length ==1 ){hours = "0" + hours;} minutes = Math.floor((now - grt ) / 1000 /60 - (24 * 60 * Math.floor((now - grt ) / 1000 / 60 / 60 / 24)) - (60 * hours)); if(String(minutes).length ==1 ){minutes = "0" + minutes;} seconds = Math.floor((now - grt ) / 1000 - (24 * 60 * 60 * Math.floor((now - grt ) / 1000 / 60 / 60 / 24)) - (60 * 60 * hours) - (60 * minutes)); if(String(seconds).length ==1 ){seconds = "0" + seconds;} if(years!=0){var outputtime=+years+"年"+days+"天"+hours+"时"+minutes+"分"+seconds+"秒";}else{var outputtime=+days+"天"+hours+"时"+minutes+"分"+seconds+"秒";} document.getElementById("siteday").style.color="#"+colorStr; document.getElementById("siteday").innerHTML = outputtime; } setInterval("StorageTime()",250); </script>--> </div> </div> <div class="fr site-fav"> <a href="https://notbyai.fyi" target="_blank"><img src="https://nie.su/usr/themes/spzac/img/Written-By-Human-Not-By-AI-Badge-black.svg" alt="written by human, not by AI" style="max-height: 42px !important;"></a> </div> <div class="site-girl"> <div class="girl fl"> <i class="thumb " style="background-image:url(https://imgbed.top/images/2022/10/12/hjbj.png);"></i> </div> <div class="girl-info hide_md"> <h4>绿水本无忧,因风皱面</h4> <h4>青山原不老,为雪白头</h4> </div> </div> </div> </div> </div> <script src="https://nie.su/usr/themes/spzac/js/bootstrap.bundle.min.js"></script> <script src="https://nie.su/usr/themes/spzac/js/main.js"></script> <script src="https://nie.su/usr/themes/spzac/js/i.js"></script> <script src="https://nie.su/usr/themes/spzac/js/copy.js"></script> <script src="https://nie.su/usr/themes/spzac/js/lazyload.min1.js"></script> <!-- <script src=""></script> <script src=""></script> <script src=""></script> <script src="https://fastly.jsdelivr.net/gh/love2wind/blogcdn@v3.5/spzac/js/jquery-3.4.1.min.js"></script> <script src="https://fastly.jsdelivr.net/gh/love2wind/blogcdn@v3.5/spzac/js/bootstrap.bundle.min.js"></script> <script src="https://fastly.jsdelivr.net/gh/love2wind/blogcdn@v3.5/spzac/js/main.js"></script> <script src="https://fastly.jsdelivr.net/gh/love2wind/blogcdn@v3.5/spzac/js/i.js"></script>--> <!--<link rel="stylesheet" href="https://cdn1.tianli0.top/gh/zhheo/Post-Abstract-AI@0.15.2/tianli_gpt.css"> <style>.post-TianliGPT {margin: 0 0 16px 0;}</style> <script> let tianliGPT_postSelector = '.post.c_con .post__description.conts'; let tianliGPT_key = 'c9093974143fd2fffd03'; </script> <script src="https://cdn1.tianli0.top/gh/zhheo/Post-Abstract-AI@0.15.2/tianli_gpt.js"></script>--> <script async src="https://umi.love2wind.com/niegeumami" data-website-id="6277a93f-5a84-4ba2-9685-8de9c8ef465c"></script><script src="https://npm.elemecdn.com/instant.page@5.1.0/instantpage.js" type="application/javascript"></script><script type="text/javascript" src="https://nie.su/usr/plugins/PandaBangumi/js/PandaBangumi.24.js?v=2.3"></script><script language="javascript">if (typeof(needGithubWidget) != "undefined") { var script = document.createElement("script"); script.src = "//cdn.bootcss.com/github-repo-widget/e23d85ab8f/jquery.githubRepoWidget.min.js"; document.body.appendChild(script); }</script> <script> function switchTabs(tab){ var lis = tab.getElementsByTagName('li'); var divs = tab.getElementsByTagName('div'); for(var i=0; i<lis.length; i++){ lis[i].index = i; lis[i].onclick = function (){ console.log(this.index); for(var j=0; j<lis.length; j++) { lis[j].className = ''; divs[j].className = ''; } this.className = 'selected'; divs[this.index].className = 'selected'; console.log(divs[this.index]) } } } (function(){ var tab = document.getElementsByClassName('my-tabs'); for(var i=0;i<tab.length;i++){ switchTabs(tab[i]) } })();</script><link rel="stylesheet" href="https://nie.su/usr/plugins/DoubanBoard/assets/DoubanBoard.09.css?v=0.5" /><script>var DoubanPageSize=12</script><script>var DoubanAPI = "https://nie.su/DoubanBoard"</script><script type="text/javascript" src="https://nie.su/usr/plugins/DoubanBoard/assets/DoubanBoard.07.js?v=0.5"></script></body> </html> <!-- end footer -->