<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>下弄六号</title>
        <link>https://tangly1024.com/</link>
        <description>山雨欲来风满楼</description>
        <lastBuildDate>Wed, 09 Oct 2024 07:18:54 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en-US</language>
        <copyright>All rights reserved 2024, NotionNext</copyright>
        <item>
            <title><![CDATA[空白文章20241001]]></title>
            <link>https://tangly1024.com/article/example-5</link>
            <guid>https://tangly1024.com/article/example-5</guid>
            <pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-11a29ec0774181a498a5dc4e61143831"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><blockquote class="notion-quote notion-block-11a29ec077418052834bcd858f25622a"><div>你们都是虫子。
——《三体》</div></blockquote><div class="notion-text notion-block-11a29ec07741802bb41af94c57aefb4f">今年对于新的一年真是有特殊的感受，因为这真正意义上是**「新的一年」**。</div><div class="notion-text notion-block-11a29ec077418002b579c3a6dd021fca">从放假这几天能感受出，曾经那些烟火气回来了。希望我和小气球在新的一年，也能越来越好，有新的收获。</div><div class="notion-text notion-block-11a29ec0774180c189baf07c36062023">新年第一篇，来点干货学习吧，毕竟学无止境呀。</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec0774180dd9012e4fc332eaba0"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://files.mdnice.com/user/13473/1535ef47-27d0-461d-8365-20290258c6c9.png?t=11a29ec0-7741-80dd-9012-e4fc332eaba0" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec077418092921bd8449697e1b0">pandas 是目前最流行的 Python 数据分析库(重复讲了非常多次了，但是还是要继续强调一下)。</div><div class="notion-text notion-block-11a29ec07741802bb293d2e8cb017c6b">它可以直接从各种外部来源读取数据，包括从 CSV、 Excel 表格、 JSON 文件、 SQL 数据库，甚至从剪贴板读取。在前面的教程中也有部分涉及，有兴趣的可以翻看之前的文章。</div><div class="notion-text notion-block-11a29ec077418030afe0db8255afb01c">但是**「目前pandas还没有直接读取 PDF 文件中的数据的方法」。**</div><div class="notion-text notion-block-11a29ec07741809684b3f240585e7fbc">值得庆幸的是，tabula-py 库可以在 PDF 中以 DataFrames 的形式读取这些表。</div><div class="notion-text notion-block-11a29ec077418087b045f2afdf898fdd">接下来就让我们来实际操作一下。</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec0774180d89d4ad602ed985423"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://img.soogif.com/Y0JCoR7GOJDbSDVwWEySAqnv2MjvkS0V.gif?scope=mdnice&amp;t=11a29ec0-7741-80d8-9d4a-d602ed985423" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec0774180b9899ac0c57d8896da">在开始之前，如果还没有安装tabula-py库，可以使用如下代码进行安装：</div><div class="notion-text notion-block-11a29ec0774180668e0fcdb7d6c8ed81">我们将以一本名为“pandas cookbook”的书（Ted Petrou在2017年出版）中提取一个表。PDF 的图像内容如下：</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec07741806286c5ef0bd727bf73"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://files.mdnice.com/user/13473/f9f7ea9c-169e-4248-ae05-1b49feba74f2.png?t=11a29ec0-7741-8062-86c5-ef0bd727bf73" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec0774180f88485f5f2c8fbd596">Tabula-py 能自动读取通过 read _ pdf 函数传递过来的页面上的所有表。我们所要做的就是给它提供 PDF 文档的文件路径和要提取的页面。</div><div class="notion-text notion-block-11a29ec0774180ffac89d629cb729b5a">可以看到，输入结果表示读取到了一个内容，目前为止输出正常。</div><div class="notion-text notion-block-11a29ec0774180d4ac4ec79841ed248a">我们再试着把pandas读取的内容打印出来看看是不是正常显示：</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec077418058b552dd5df8e80bcc"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://files.mdnice.com/user/13473/97bc4d6e-d74c-48d8-b5a7-1b453d1afbbd.png?t=11a29ec0-7741-8058-b552-dd5df8e80bcc" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec0774180afb23bcbb3fe89eca8">可以看到，表头这边出了一点错误，需要我们后续调整一下。</div><div class="notion-text notion-block-11a29ec077418055a372d8aee48fc6ef">对于这个PDF，我们想要的是提取出正确的表格，其中包含格式、副本、收入、版税四列。而实际上，Tabula 提取的内容比预计的多，导致表格并没有提取的非常好。</div><div class="notion-text notion-block-11a29ec0774180189bb1c60681ab9cf3">我们可以使用pandas来清理数据，但 tabula-py 为我们提供了参数来定义整个表本身的边界和列的定位。相对 _ area 和相对 _ column 参数被设置为 True，这允许我们提供区域和列参数的边界，作为页面的百分比，而不是点坐标。在我看来，使用相对页面百分比更容易定义边界。传递区域列一个由顶部、左部、底部和右部组成的四项列表。它们表示表相对于页的边界。列的三项列表表示分隔四列的垂直线。让我们重新读入数据并输出结果 DataFrame。</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec0774180f5bdfee1e31fca46f2"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://files.mdnice.com/user/13473/473ac1ea-cce0-4dce-b29a-0a6515cec8b2.png?t=11a29ec0-7741-80f5-bdfe-e1e31fca46f2" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec077418013877ff0f65007f7eb">这个提取看起来更好，几乎正是我们想要的。让我们检查每个列的数据类型，以了解哪些列需要更多处理。</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec07741801d9849d9627f366465"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://files.mdnice.com/user/13473/f7628237-c054-434d-ad99-57da6b2f2842.png?t=11a29ec0-7741-801d-9849-d9627f366465" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec0774180129d84fe8bebc413ea">方便地，成功地将“副本”列转换为整数。“收入”和“使用费”列作为字符串读入。我们现在必须转向熊猫将这些列转换为浮动。为此，我们使用正则表达式将任何美元符号、逗号和空格替换为空格。</div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec077418056929de90f4983279e"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img src="https://files.mdnice.com/user/13473/b32338ad-df48-497d-8bde-0c89dc86103c.png?t=11a29ec0-7741-8056-929d-e90f4983279e" alt="notion image" loading="lazy" decoding="async"/></div></figure><div class="notion-text notion-block-11a29ec0774180439d81e83172277692">在本教程中，我们将自定义输入传递到 tabula-py 的 read _ PDF 函数中，以提取作为熊猫 DataFrame 的 PDF 中的表。然后我们清理了结果，熊猫能够使用正则表达式替换字符。Tabula-py 还有几个选项可用于定制提取过程。</div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[模板说明]]></title>
            <link>https://tangly1024.com/article/guide</link>
            <guid>https://tangly1024.com/article/guide</guid>
            <pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[<- 点击标题OPEN按钮打开说明；请检查您的NOTION_PAGE_ID是否成功配置，否则会显示我的默认数据库内容。]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-11a29ec0774181f49679f752edc51a0f"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181d39508f8514de95622" data-id="11a29ec0774181d39508f8514de95622"><span><div id="11a29ec0774181d39508f8514de95622" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181d39508f8514de95622" title="如何使用Notion编写文章"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">如何使用Notion编写文章</span></span></h2><div class="notion-text notion-block-11a29ec07741812f9569c603e0e9bd48">请访问教程获取帮助</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec07741817f9b6ac976f3deb8fc" href="https://docs.tangly1024.com/article/start-to-write"><div><div class="notion-bookmark-title">如何在Notion中开始写作 | NotionNext文档</div><div class="notion-bookmark-description">这是一个由NotionNext生成的站点</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Fdocs.tangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-817f-9b6a-c976f3deb8fc&amp;t=11a29ec0-7741-817f-9b6a-c976f3deb8fc" alt="如何在Notion中开始写作 | NotionNext文档" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://docs.tangly1024.com/article/start-to-write</div></div></div></a></div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec0774181c98087f6401cc1703d" href="https://docs.tangly1024.com/article/notion-short-key"><div><div class="notion-bookmark-title">Notion快捷键 | NotionNext文档</div><div class="notion-bookmark-description">Notion有很多使用的快捷键，看完这篇文章，让你的效率加倍</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Fdocs.tangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-81c9-8087-f6401cc1703d&amp;t=11a29ec0-7741-81c9-8087-f6401cc1703d" alt="Notion快捷键 | NotionNext文档" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://docs.tangly1024.com/article/notion-short-key</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fd4851275-5ab5-4aaa-bc51-77c73ad658c4%2Fe8ed862f23227112ab999a90757a3bf8.jpg?table=block&amp;id=a88d5688-b66a-4baf-a8e8-f769bb210954&amp;width=800&amp;t=11a29ec0-7741-81c9-8087-f6401cc1703d&amp;cache=v2" alt="Notion快捷键 | NotionNext文档" loading="lazy" decoding="async"/></div></a></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181208b9de497dd1b82e2" data-id="11a29ec0774181208b9de497dd1b82e2"><span><div id="11a29ec0774181208b9de497dd1b82e2" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181208b9de497dd1b82e2" title="模板使用说明"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">模板使用说明</span></span></h2><div class="notion-text notion-block-11a29ec07741816fb9fde4b37cb36295">NotionNext项目必须绑定一个Notion数据库才能使用。请访问教程获取帮助</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec0774181e28a4dfa3eb8b9e9fd" href="https://docs.tangly1024.com/article/vercel-deploy-notion-next#3df829414795492bb41ec351eb6da84e"><div><div class="notion-bookmark-title">Vercel云部署 | NotionNext文档</div><div class="notion-bookmark-description">Vercel是一款国外的Serverless托管平台，对个人用户使用几乎免费，而且方便快捷，用Vercel托管你的Notion站点，无需再操心服务器的维护与资费问题。</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Fdocs.tangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-81e2-8a4d-fa3eb8b9e9fd&amp;t=11a29ec0-7741-81e2-8a4d-fa3eb8b9e9fd" alt="Vercel云部署 | NotionNext文档" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://docs.tangly1024.com/article/vercel-deploy-notion-next#3df829414795492bb41ec351eb6da84e</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1642083139428-9ee5fa423c46%3Fixlib%3Drb-4.0.3%26q%3D50%26fm%3Dwebp%26crop%3Dentropy%26cs%3Dtinysrgb%26width%3D800%26fmt%3Dwebp?table=block&amp;id=11a29ec0-7741-81e2-8a4d-fa3eb8b9e9fd&amp;t=11a29ec0-7741-81e2-8a4d-fa3eb8b9e9fd" alt="Vercel云部署 | NotionNext文档" loading="lazy" decoding="async"/></div></a></div><div class="notion-sync-block notion-block-11a29ec0774181b6927fe3ba80e54be5"><h3 class="notion-h notion-h2 notion-block-11a29ec0774181de8d80c292b3f0bc8a" data-id="11a29ec0774181de8d80c292b3f0bc8a"><span><div id="11a29ec0774181de8d80c292b3f0bc8a" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181de8d80c292b3f0bc8a" title="模板字段说"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">模板字段说</span></span></h3><div class="notion-text notion-block-11a29ec07741811c913dc6b4a5998ee5">Notion数据库中，每条数据都将有以下属性🤔：</div><table class="notion-simple-table notion-block-11a29ec077418171b4f1f494dc54b716"><tbody><tr class="notion-simple-table-row notion-block-11a29ec077418170a53aee49bf19da32"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell">属性</div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">必填</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">说明</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">备注</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181a2a3b7dee6a091af59"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">title</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell"> 是</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell"> 文章标题</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">ㅤ</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec07741813a9875d42c9271cdf9"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">status</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">是</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">发布状态</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">（仅当状态为<code class="notion-inline-code">Published</code> 时会被 展示）</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec07741813b89b5c5ff7a204efb"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">type</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">是</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">页面类型 (博文<code class="notion-inline-code">Post</code> / 单页(<code class="notion-inline-code">Page</code>)</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">单页不会在博文列表显示 。</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181c78002fb07dce842fb"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">summary</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">内容摘要</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">搜索和简略显示会用到，在文章列表会显示出</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec07741812a81d6f5aaac4426cd"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">date</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">发布日期</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">在V3.3.9之前的版本此项为必填。</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181e3bd83f36ef9f4f733"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">category</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">文章分类</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">可以自定义</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec07741810fb22dd48584227198"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">tags</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">文章标签</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">可多个，建议不要太多</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181678403e74997d90329"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">slug</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">文章短路径</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell"> (每篇文章唯一，请勿 重复）</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec07741815cb680e0acacd9e7fd"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">icon</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">菜单栏图标(仅当<code class="notion-inline-code">Page</code>/<code class="notion-inline-code">Menu</code>类型有效)</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">可以参考：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://fontawesome.com/v6/search">图标库地址</a></div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181eb9373d6912fd3166a"><td class="" style="width:116.99479675292969px"><div class="notion-simple-table-cell"><code class="notion-inline-code">password</code></div></td><td class="" style="width:46.989585876464844px"><div class="notion-simple-table-cell"> 否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell"> 文章加锁</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell"> 需要输入密码才允许访问</div></td></tr></tbody></table><div class="notion-text notion-block-11a29ec077418166acadc26c9c09291b">数据库的每一列有不同的功能；

<code class="notion-inline-code">type</code>： 这条数据的类型 ，有 <code class="notion-inline-code">notice</code>(公告)、<code class="notion-inline-code">post</code>(文章)、<code class="notion-inline-code">page</code>(单页)、<code class="notion-inline-code">menu</code>(菜单)、<code class="notion-inline-code">submenu</code>(子菜单)这几种类型。

<code class="notion-inline-code">slug </code>，根据数据类型，有不同的作用：</div><ol start="1" class="notion-list notion-list-numbered notion-block-11a29ec0774181dfa5bec90458276d4f"><li>在菜单(Menu\SubMenu)中表示跳转到哪个页面， 在文章中表示这篇文章在博客中的访问地址、也可以是外链。通常以左斜杆开头：<code class="notion-inline-code"> /test-menu</code>对应访问 → https://站点域名<code class="notion-inline-code">/testmenu</code>。也可以设置成完整的外链，例如<code class="notion-inline-code">https://tangly1024.com</code> 。</li></ol><ol start="2" class="notion-list notion-list-numbered notion-block-11a29ec077418158bc62ca005c9a2f94"><li>在单页中（Page）, 表示这个页面在站点根目录的文件名。不要以左斜杆开头: 例如 <code class="notion-inline-code">test-page</code> → 对应 https://站点域名/<code class="notion-inline-code">test-page</code>。</li></ol><ol start="3" class="notion-list notion-list-numbered notion-block-11a29ec0774181d89763fb2f84950041"><li>在博文中(Post)，也表示文件路径，但是博文会自动添加一个前缀。例如: <code class="notion-inline-code">test-post </code>则可以通过 https://域名/article/<code class="notion-inline-code">test-post</code> 访问到这个博客，这里的article是默认配置的前缀。</li></ol></div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[EMPTY-ARTICLE]]></title>
            <link>https://tangly1024.com/article/example-3</link>
            <guid>https://tangly1024.com/article/example-3</guid>
            <pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[仅供列表展示、文章无内容，仅供列表展示、文章无内容，仅供列表展示、文章无内容。]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-11a29ec0774181e59df1f7c7035ba3b4"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><div class="notion-blank notion-block-11a29ec07741817d85aef147a2a5bb70"> </div><div class="notion-callout notion-gray_background_co notion-block-11a29ec077418128887dd92cb47db6c9"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-icon" role="img" aria-label="😀">😀</span></div><div class="notion-callout-text">这里写文章的前言：
一个简单的开头,简述这篇文章讨论的问题、目标、人物、背景是什么？并简述你给出的答案。<div class="notion-text notion-block-11a29ec077418141b92df75cbf39be25">可以说说你的故事：阻碍、努力、结果成果，意外与转折。</div></div></div><div class="notion-blank notion-block-11a29ec0774181ff8dcad520701fb2e2"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181a0b5bce11bac8da5b9" data-id="11a29ec0774181a0b5bce11bac8da5b9"><span><div id="11a29ec0774181a0b5bce11bac8da5b9" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181a0b5bce11bac8da5b9" title="📝 主旨内容"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">📝 主旨内容</span></span></h2><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181b5b613dce538655000" data-id="11a29ec0774181b5b613dce538655000"><span><div id="11a29ec0774181b5b613dce538655000" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181b5b613dce538655000" title="观点1"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">观点1</span></span></h3><blockquote class="notion-quote notion-block-11a29ec077418181acc5dab12947604c"><div>引用的话语</div></blockquote><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec077418112a85be0638dbaa0a5" data-id="11a29ec077418112a85be0638dbaa0a5"><span><div id="11a29ec077418112a85be0638dbaa0a5" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418112a85be0638dbaa0a5" title="观点2"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">观点2</span></span></h3><blockquote class="notion-quote notion-block-11a29ec077418189bdbaec1ffc44c001"><div>引用的话语</div></blockquote><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec07741814589edd69996aebf46" data-id="11a29ec07741814589edd69996aebf46"><span><div id="11a29ec07741814589edd69996aebf46" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741814589edd69996aebf46" title="🤗 总结归纳"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">🤗 总结归纳</span></span></h2><div class="notion-text notion-block-11a29ec0774181088e92dfb7efa7748f">总结文章的内容</div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181369fc2fb05f62b3d7a" data-id="11a29ec0774181369fc2fb05f62b3d7a"><span><div id="11a29ec0774181369fc2fb05f62b3d7a" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181369fc2fb05f62b3d7a" title="📎 参考文章"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">📎 参考文章</span></span></h2><ul class="notion-list notion-list-disc notion-block-11a29ec077418104a249f3e18005a530"><li>一些引用</li></ul><ul class="notion-list notion-list-disc notion-block-11a29ec0774181e496b2e643e4d51ec5"><li>引用文章</li></ul><div class="notion-blank notion-block-11a29ec07741817faf6bc944fa0fab9d"> </div><div class="notion-callout notion-gray_background_co notion-block-11a29ec0774181b9a78ddcaf2a4b9411"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-icon" role="img" aria-label="💡">💡</span></div><div class="notion-callout-text">有关Notion安装或者使用上的问题，欢迎您在底部评论区留言，一起交流~</div></div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[绑定成功测试]]></title>
            <link>https://tangly1024.com/article/example-4</link>
            <guid>https://tangly1024.com/article/example-4</guid>
            <pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[如果您的Notion数据库已经修改了内容，发现网站内容还是旧的，说明绑定NotionPageID失败了，请重新检查Vercel后台是否正确配置好ID，并尝试重新部署。]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-11a29ec07741817cb897e2b7f3ecaabd"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><div class="notion-callout notion-gray_background_co notion-block-11a29ec077418186a013c1b3da295ffe"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-icon" role="img" aria-label="😀">😀</span></div><div class="notion-callout-text">如果您的Notion数据库已经修改了内容，发现网站内容还是旧的，说明绑定NotionPageID失败了，请重新检查Vercel后台是否正确配置好ID，并尝试重新部署</div></div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[示例文章]]></title>
            <link>https://tangly1024.com/article/example-1</link>
            <guid>https://tangly1024.com/article/example-1</guid>
            <pubDate>Fri, 05 Nov 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[这是示例的文章摘要，摘要内容可被用做搜索，预览。文章列表默认展示概要；若要在列表直接展示文章内容，可在blog.config.js中配置。]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-11a29ec0774181b5af4ecdab4e774dc5"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181f593e5c58ca01cc631" data-id="11a29ec0774181f593e5c58ca01cc631"><span><div id="11a29ec0774181f593e5c58ca01cc631" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181f593e5c58ca01cc631" title="基本段落"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">基本段落</span></span></h2><blockquote class="notion-quote notion-block-11a29ec07741819fb1d7def657973579"><div>书中自有黄金屋，书中自有颜如玉</div></blockquote><div class="notion-callout notion-gray_background_co notion-block-11a29ec0774181b5a1d2c438d284b2dd"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-icon" role="img" aria-label="💡">💡</span></div><div class="notion-callout-text">生活的意义并不是与他人争高下，而在于享受努力实现目标的过程，结果只是对自己行动的嘉奖。</div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec077418107bdb0e04cb94f7448" data-id="11a29ec077418107bdb0e04cb94f7448"><span><div id="11a29ec077418107bdb0e04cb94f7448" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418107bdb0e04cb94f7448" title="将进酒"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title"><b>将进酒</b></span></span></h3><div class="notion-text notion-block-11a29ec077418155948ef0cc79185c73">李白〔唐代〕<a target="_blank" rel="noopener noreferrer" class="notion-link" href="#a47eb4929c654ac4b8c895d00023a97e">参考[1]</a></div><div class="notion-text notion-block-11a29ec077418199a461c3f51b20f9b9">君不见黄河之水天上来，奔流到海不复回。
君不见高堂明镜悲白发，朝如青丝暮成雪。
人生得意须尽欢，莫使金樽空对月。
天生我材必有用，千金散尽还复来。
烹羊宰牛且为乐，会须一饮三百杯。
岑夫子，丹丘生，将进酒，杯莫停。
与君歌一曲，请君为我倾耳听。
钟鼓馔玉不足贵，但愿长醉不愿醒。
古来圣贤皆寂寞，惟有饮者留其名。
陈王昔时宴平乐，斗酒十千恣欢谑。
主人何为言少钱，径须沽取对君酌。
五花马、千金裘，呼儿将出换美酒，与尔同销万古愁。</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec07741814da892fd9f507a5296" href="https://tangly1024.com/"><div><div class="notion-bookmark-title">TANGLY&#x27;s BLOG | 记录思考、分享我的学习笔记</div><div class="notion-bookmark-description">记录思考、分享我的学习笔记</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Ftangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-814d-a892-fd9f507a5296&amp;t=11a29ec0-7741-814d-a892-fd9f507a5296" alt="TANGLY&#x27;s BLOG | 记录思考、分享我的学习笔记" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://tangly1024.com/</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1564419320603-628d868a193f%3Fq%3D50%26fm%3Djpg%26fit%3Dcrop%26w%3D1920%26h%3D1600?table=block&amp;id=11a29ec0-7741-814d-a892-fd9f507a5296&amp;t=11a29ec0-7741-814d-a892-fd9f507a5296" alt="TANGLY&#x27;s BLOG | 记录思考、分享我的学习笔记" loading="lazy" decoding="async"/></div></a></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec077418147bb2bf6988d48f07f" data-id="11a29ec077418147bb2bf6988d48f07f"><span><div id="11a29ec077418147bb2bf6988d48f07f" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418147bb2bf6988d48f07f" title="特殊段落"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">特殊段落</span></span></h2><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec077418103b72eceb34cb57f82" data-id="11a29ec077418103b72eceb34cb57f82"><span><div id="11a29ec077418103b72eceb34cb57f82" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418103b72eceb34cb57f82" title="1.代码"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">1.代码</span></span></h3><details class="notion-toggle notion-block-11a29ec07741817c9e26cf58f4847fba"><summary>其他更多语言</summary><div></div></details><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181bd9282ee64c8e14957" data-id="11a29ec0774181bd9282ee64c8e14957"><span><div id="11a29ec0774181bd9282ee64c8e14957" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181bd9282ee64c8e14957" title="2.公式"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">2.公式</span></span></h3><ul class="notion-list notion-list-disc notion-block-11a29ec0774181f69322ccc182e3fd25"><li>数学公式</li><ul class="notion-list notion-list-disc notion-block-11a29ec0774181f69322ccc182e3fd25"></ul></ul><ul class="notion-list notion-list-disc notion-block-11a29ec0774181fdac98e2e8c39a2337"><li>化学方程</li><ul class="notion-list notion-list-disc notion-block-11a29ec0774181fdac98e2e8c39a2337"><div class="notion-text notion-block-11a29ec077418127af4ec4e5f3fea017"></div></ul></ul><details class="notion-toggle notion-block-11a29ec0774181d5ba71d5c65642bd4a"><summary>其他更多公式</summary><div><div class="notion-blank notion-block-11a29ec0774181389f00ee6d78d84f60"> </div></div></details><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec07741815b822fe8e2358b3a8f" data-id="11a29ec07741815b822fe8e2358b3a8f"><span><div id="11a29ec07741815b822fe8e2358b3a8f" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741815b822fe8e2358b3a8f" title="3. 图表"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">3. 图表</span></span></h3><figure class="notion-asset-wrapper notion-asset-wrapper-pdf notion-block-11a29ec07741810ebc5dd6b19b8870ef"><div style="position:relative;display:block;justify-content:center;align-self:center;width:720px;max-width:100%;flex-direction:column;height:469px;overflow:auto;background:rgb(226, 226, 226);padding:8px 16px"></div></figure><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec077418112be92dbb60f973811" data-id="11a29ec077418112be92dbb60f973811"><span><div id="11a29ec077418112be92dbb60f973811" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418112be92dbb60f973811" title="4.下载附件"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">4.下载附件</span></span></h3><div class="notion-file notion-block-11a29ec077418118a62ce5f6a016d8be"><a target="_blank" rel="noopener noreferrer" class="notion-file-link" href="https://notion.so/signed/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2Fbda82445-d97f-46d1-93c2-63436d2c7cc0%2Ffab11580-96c3-4230-90f6-05257f00fb0a%2F%25E6%25B5%258B%25E8%25AF%2595%25E5%25B5%258C%25E5%2585%25A5PDF.pdf?table=block&amp;id=11a29ec0-7741-8118-a62c-e5f6a016d8be"><svg class="notion-file-icon" viewBox="0 0 30 30"><path d="M22,8v12c0,3.866-3.134,7-7,7s-7-3.134-7-7V8c0-2.762,2.238-5,5-5s5,2.238,5,5v12c0,1.657-1.343,3-3,3s-3-1.343-3-3V8h-2v12c0,2.762,2.238,5,5,5s5-2.238,5-5V8c0-3.866-3.134-7-7-7S6,4.134,6,8v12c0,4.971,4.029,9,9,9s9-4.029,9-9V8H22z"></path></svg><div class="notion-file-info"><div class="notion-file-title">下载PDF附件.pdf</div><div class="notion-file-size">469.5KB</div></div></a></div><div class="notion-file notion-block-11a29ec077418166909ce847e089553b"><a target="_blank" rel="noopener noreferrer" class="notion-file-link" href="https://notion.so/signed/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2Fbda82445-d97f-46d1-93c2-63436d2c7cc0%2F69f6fdf6-9aab-485a-a73d-d5c0d3f324db%2F%25E4%25B8%258B%25E8%25BD%25BDPDF%25E9%2599%2584%25E4%25BB%25B6-2.pdf?table=block&amp;id=11a29ec0-7741-8166-909c-e847e089553b"><svg class="notion-file-icon" viewBox="0 0 30 30"><path d="M22,8v12c0,3.866-3.134,7-7,7s-7-3.134-7-7V8c0-2.762,2.238-5,5-5s5,2.238,5,5v12c0,1.657-1.343,3-3,3s-3-1.343-3-3V8h-2v12c0,2.762,2.238,5,5,5s5-2.238,5-5V8c0-3.866-3.134-7-7-7S6,4.134,6,8v12c0,4.971,4.029,9,9,9s9-4.029,9-9V8H22z"></path></svg><div class="notion-file-info"><div class="notion-file-title">下载PDF附件-2.pdf</div><div class="notion-file-size">469.5KB</div></div></a></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181fb8487f4ec778c8c45" data-id="11a29ec0774181fb8487f4ec778c8c45"><span><div id="11a29ec0774181fb8487f4ec778c8c45" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181fb8487f4ec778c8c45" title="5. 照片集"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">5. 照片集</span></span></h3><div class="notion-callout notion-gray_background_co notion-block-11a29ec07741813c8822d05ad2332fc9"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-icon" role="img" aria-label="💡">💡</span></div><div class="notion-callout-text">这是一张图片<figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec077418100a026ec5ac58d6cfc"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:288px;max-width:100%;flex-direction:column"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2Fbda82445-d97f-46d1-93c2-63436d2c7cc0%2Fc876828e-2768-4863-b6d3-ad97b32223d3%2FWX20201027-1015302x.png?table=block&amp;id=11a29ec0-7741-8100-a026-ec5ac58d6cfc&amp;t=11a29ec0-7741-8100-a026-ec5ac58d6cfc&amp;width=288&amp;cache=v2" alt="notion image" loading="lazy" decoding="async"/></div></figure></div></div><div><div></div><div class="notion-collection-header"><div class="notion-collection-header-title">照片集</div></div></div><div class="notion-collection notion-block-11a29ec0774181bbb11eeccac0b52d62"><div class="notion-gallery"><div class="notion-gallery-view"><div class="notion-gallery-grid notion-gallery-grid-size-large"><a class="notion-collection-card notion-collection-card-size-large" href="/11a29ec0774181ef930ce117baa7bc46"><div class="notion-collection-card-cover"><img style="object-fit:cover;object-position:center 30.000000000000004%" src="https://www.notion.so/images/page-cover/met_emanuel_leutze.jpg" alt="照片标题1" loading="lazy" decoding="async"/></div><div class="notion-collection-card-body"><div class="notion-collection-card-property"><span class="notion-property notion-property-title"><span class="notion-page-link"><span class="notion-page-title"><div class="notion-page-icon-inline notion-page-icon-image"><svg class="notion-page-title-icon notion-page-icon" alt="照片标题1" viewBox="0 0 30 30" width="16"><path d="M16,1H4v28h22V11L16,1z M16,3.828L23.172,11H16V3.828z M24,27H6V3h8v10h10V27z M8,17h14v-2H8V17z M8,21h14v-2H8V21z M8,25h14v-2H8V25z"></path></svg></div><span class="notion-page-title-text">照片标题1</span></span></span></span></div><div class="notion-collection-card-property"><span class="notion-property notion-property-text"><form action="https://preview.tangly1024.com/fc758ffac897479d9a7161cce3272520" target="_blank"><input type="submit" class="nested-form-link notion-link" value="查看"/></form></span></div></div></a><a class="notion-collection-card notion-collection-card-size-large" href="/11a29ec0774181119abed442f76ab933"><div class="notion-collection-card-cover"><img style="object-fit:cover;object-position:center 100%" src="https://www.notion.so/images/page-cover/woodcuts_5.jpg" alt="照片标题2" loading="lazy" decoding="async"/></div><div class="notion-collection-card-body"><div class="notion-collection-card-property"><span class="notion-property notion-property-title"><span class="notion-page-link"><span class="notion-page-title"><div class="notion-page-icon-inline notion-page-icon-image"><svg class="notion-page-title-icon notion-page-icon" alt="照片标题2" viewBox="0 0 30 30" width="16"><path d="M16,1H4v28h22V11L16,1z M16,3.828L23.172,11H16V3.828z M24,27H6V3h8v10h10V27z M8,17h14v-2H8V17z M8,21h14v-2H8V21z M8,25h14v-2H8V25z"></path></svg></div><span class="notion-page-title-text">照片标题2</span></span></span></span></div><div class="notion-collection-card-property"><span class="notion-property notion-property-text"><form action="https://tangly1024.com/" target="_blank"><input type="submit" class="nested-form-link notion-link" value="https://tangly1024.com/"/></form></span></div></div></a></div></div></div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec07741812b8d47e32c12849724" data-id="11a29ec07741812b8d47e32c12849724"><span><div id="11a29ec07741812b8d47e32c12849724" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741812b8d47e32c12849724" title="6. 内嵌网页"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">6. 内嵌网页</span></span></h3><figure class="notion-asset-wrapper notion-asset-wrapper-embed notion-block-11a29ec0774181e69952ca2401ef9015"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column;height:486.9886169433594px"><iframe class="notion-asset-object-fit" src="https://docs.tangly1024.com/zh" title="iframe embed" frameBorder="0" allowfullscreen="" loading="lazy" scrolling="auto"></iframe></div></figure><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181488512db8fce382aa8" data-id="11a29ec0774181488512db8fce382aa8"><span><div id="11a29ec0774181488512db8fce382aa8" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181488512db8fce382aa8" title="7.内嵌视频"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">7.内嵌视频</span></span></h3><figure class="notion-asset-wrapper notion-asset-wrapper-embed notion-block-11a29ec0774181aaa8f4efc463ae02dd"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:624px;max-width:100%;flex-direction:column;height:376px"><iframe class="notion-asset-object-fit" src="https://player.bilibili.com/player.html?aid=1700928875" title="iframe embed" frameBorder="0" allowfullscreen="" loading="lazy" scrolling="auto"></iframe></div></figure><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181c3a2bec937c035e9ec" data-id="11a29ec0774181c3a2bec937c035e9ec"><span><div id="11a29ec0774181c3a2bec937c035e9ec" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181c3a2bec937c035e9ec" title="8.代办"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">8.代办</span></span></h3><div class="notion-row notion-block-11a29ec0774181f0acc7dc0960ce0e49"><div class="notion-column notion-block-11a29ec077418134b3d0c298fc32f9af" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><div class="notion-text notion-teal_background notion-block-11a29ec07741813abe6adc9ce19a5504">家庭</div><div class="notion-to-do notion-block-11a29ec0774181d39deef50a24ad84bf"><div class="notion-to-do-item"><span class="notion-property notion-property-checkbox"><div class="notion-property-checkbox-unchecked"></div></span><div class="notion-to-do-body">洗衣</div></div><div class="notion-to-do-children"></div></div><div class="notion-to-do notion-block-11a29ec077418145bd8dc5af4fc357f2"><div class="notion-to-do-item"><span class="notion-property notion-property-checkbox"><div class="notion-property-checkbox-unchecked"></div></span><div class="notion-to-do-body">做饭</div></div><div class="notion-to-do-children"></div></div></div><div class="notion-spacer"></div><div class="notion-column notion-block-11a29ec07741811ea892e758b718c7ec" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><div class="notion-text notion-blue_background notion-block-11a29ec0774181b6958edabf49eb4fde">事业</div><div class="notion-to-do notion-block-11a29ec0774181fe8c75fd094d8925e4"><div class="notion-to-do-item"><span class="notion-property notion-property-checkbox"><div class="notion-property-checkbox-unchecked"></div></span><div class="notion-to-do-body">开会</div></div><div class="notion-to-do-children"></div></div><div class="notion-to-do notion-block-11a29ec0774181a6958bf5bf9defebf0"><div class="notion-to-do-item"><span class="notion-property notion-property-checkbox"><div class="notion-property-checkbox-unchecked"></div></span><div class="notion-to-do-body">加班</div></div><div class="notion-to-do-children"></div></div></div><div class="notion-spacer"></div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec07741817f9d60cf66acf6a119" data-id="11a29ec07741817f9d60cf66acf6a119"><span><div id="11a29ec07741817f9d60cf66acf6a119" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741817f9d60cf66acf6a119" title="9.折叠列表"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">9.折叠列表</span></span></h3><details class="notion-toggle notion-block-11a29ec077418172afeafa755f5ba7a9"><summary>点击展开</summary><div><details class="notion-toggle notion-block-11a29ec077418151be45cd539a9f6dfc"><summary>点击展开</summary><div><details class="notion-toggle notion-block-11a29ec07741814cab80f82e6d3c63ca"><summary>点击展开</summary><div><div class="notion-text notion-block-11a29ec0774181ae8c5fc630f41fb43b">内容可以多级嵌套</div></div></details></div></details></div></details><hr class="notion-hr notion-block-11a29ec07741814ba871cc44f83d41df"/><div class="notion-blank notion-block-11a29ec0774181d2b4ebf912d7768166"> </div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181b193e9dce78e942c6b" data-id="11a29ec0774181b193e9dce78e942c6b"><span><div id="11a29ec0774181b193e9dce78e942c6b" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181b193e9dce78e942c6b" title="10. 同步块 "><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">10. 同步块 </span></span></h3><div class="notion-text notion-block-11a29ec07741817d8ebcf94cc080dee1">Notion支持将不同页面的块进行同步，即 SyncBlock，以下是来自另一个页面的块：</div><div class="notion-sync-block notion-block-11a29ec0774181b98da4ef59a2170a4e"><div class="notion-text notion-block-11a29ec077418179abdaf48301be0bd4">【sync-block】这是一段来自示例文章-3的段落 ，通过 SyncBlock同步。</div></div><div class="notion-callout notion-gray_background_co notion-block-11a29ec077418160bac8d540fb4ddf7f"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-icon" role="img" aria-label="💡">💡</span></div><div class="notion-callout-text"><span class="notion-red_background">注意</span> ： 同步块的使用条件是源页面也要被<b>开放共享</b> ，否则NotionNext将无权访问，页面上会被忽略渲染。<figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-11a29ec0774181e099b4cf3dbcc15c1d"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:528px;max-width:100%;flex-direction:column"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2Fbda82445-d97f-46d1-93c2-63436d2c7cc0%2Fe078a58d-d9a8-48ac-8489-34d9d71b03c8%2FUntitled.png?table=block&amp;id=11a29ec0-7741-81e0-99b4-cf3dbcc15c1d&amp;t=11a29ec0-7741-81e0-99b4-cf3dbcc15c1d&amp;width=528&amp;cache=v2" alt="notion image" loading="lazy" decoding="async"/></div></figure></div></div><div class="notion-blank notion-block-11a29ec0774181eabfebe217572e96f2"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec07741815bb98adb669e3efccd" data-id="11a29ec07741815bb98adb669e3efccd"><span><div id="11a29ec07741815bb98adb669e3efccd" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741815bb98adb669e3efccd" title="11.多级目录"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">11.多级目录</span></span></h2><div class="notion-text notion-block-11a29ec0774181f9ae0ecd9f54fb73de">heading标题在博客中自动转为目录</div><div class="notion-row notion-block-11a29ec0774181378427d5e2bc19606e"><div class="notion-column notion-block-11a29ec077418110810bf838b88a96c6" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h3 class="notion-h notion-h2 notion-block-11a29ec077418131b2c8f515208ca1c8" data-id="11a29ec077418131b2c8f515208ca1c8"><span><div id="11a29ec077418131b2c8f515208ca1c8" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418131b2c8f515208ca1c8" title="二级目录1"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">二级目录1</span></span></h3><div class="notion-text notion-block-11a29ec077418114bd61c895c3818e1b">二级内容 1</div></div><div class="notion-spacer"></div><div class="notion-column notion-block-11a29ec0774181fda737c16b8385d4ae" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h3 class="notion-h notion-h2 notion-block-11a29ec0774181f9a553c3372bc18153" data-id="11a29ec0774181f9a553c3372bc18153"><span><div id="11a29ec0774181f9a553c3372bc18153" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181f9a553c3372bc18153" title="二级目录2"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">二级目录2</span></span></h3><div class="notion-text notion-block-11a29ec0774181dcb520d6fe09ecb348">二级内容2</div></div><div class="notion-spacer"></div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec077418156b6b6cf66f182709b" data-id="11a29ec077418156b6b6cf66f182709b"><span><div id="11a29ec077418156b6b6cf66f182709b" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec077418156b6b6cf66f182709b" title="二级目录3"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">二级目录3</span></span></h3><div class="notion-row notion-block-11a29ec07741816ea833cfeb7e0e39c6"><div class="notion-column notion-block-11a29ec0774181eda6c3efc7d71d2cbd" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h4 class="notion-h notion-h3 notion-block-11a29ec0774181e0aa65c158bef63adf" data-id="11a29ec0774181e0aa65c158bef63adf"><span><div id="11a29ec0774181e0aa65c158bef63adf" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181e0aa65c158bef63adf" title="三级目录3.1"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">三级目录3.1</span></span></h4><div class="notion-text notion-block-11a29ec07741816f8266c86628a95549">不同级别的heading代表不同级别的目录</div></div><div class="notion-spacer"></div><div class="notion-column notion-block-11a29ec077418160b96ee51573a75862" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h4 class="notion-h notion-h3 notion-block-11a29ec07741819c9c56f6500a93d8e2" data-id="11a29ec07741819c9c56f6500a93d8e2"><span><div id="11a29ec07741819c9c56f6500a93d8e2" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741819c9c56f6500a93d8e2" title="三级目录3.2"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">三级目录3.2</span></span></h4><div class="notion-text notion-block-11a29ec07741818f9db0f5c2b7867084">高一级目录嵌套低一级目录</div></div><div class="notion-spacer"></div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-11a29ec0774181faa9bfc2585b68ba80" data-id="11a29ec0774181faa9bfc2585b68ba80"><span><div id="11a29ec0774181faa9bfc2585b68ba80" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181faa9bfc2585b68ba80" title="多级列表"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">多级列表</span></span></h3><ul class="notion-list notion-list-disc notion-block-11a29ec077418131b54ad7338e86e3f9"><li>事物的必然性</li></ul><ol start="1" class="notion-list notion-list-numbered notion-block-11a29ec07741811fa459e697a830cd6f"><li>事物按规律变化，也有一种不可避免的性质．这种性质就叫做<b>必然性</b></li><ol class="notion-list notion-list-numbered notion-block-11a29ec07741811fa459e697a830cd6f"><li>事物的必然性，是事物本身的性质（我们反对宿命论的是其认为这一切是受神明的支配，而不是反对事物发展中存在的不可避免的性质的事实）</li><ol class="notion-list notion-list-numbered notion-block-11a29ec07741814ea3b1eb2b35d97cac"><li>第三级别列表</li><li>第三级别列表</li></ol><li>其决定于它自己本身发展的情况和周围的条件</li><ol class="notion-list notion-list-numbered notion-block-11a29ec0774181d9a0fac0871795681c"><li>第三级别列表</li><ol class="notion-list notion-list-numbered notion-block-11a29ec07741818b8d1ffe214fab7802"><li>第三级别列表</li></ol></ol></ol></ol><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181d6a9ede0bbda43a3d2" data-id="11a29ec0774181d6a9ede0bbda43a3d2"><span><div id="11a29ec0774181d6a9ede0bbda43a3d2" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181d6a9ede0bbda43a3d2" title="模板使用说明"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">模板使用说明</span></span></h2><div class="notion-text notion-block-11a29ec077418116aa1ced5f8893ec67">若要部署你的NotionNext项目，请复制该模板，并按照模板格式创建文章：</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec077418172981cc634f546e8f2" href="https://tanghh.notion.site/02ab3b8678004aa69e9e415905ef32a5?v=b7eb215720224ca5827bfaa5ef82cf2d"><div><div class="notion-bookmark-title">Notion 博客 | Notion</div><div class="notion-bookmark-description">一个NotionNext搭建的博客</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Fwww.notion.so%2Ffront-static%2Flogo-ios.png?table=block&amp;id=11a29ec0-7741-8172-981c-c634f546e8f2&amp;t=11a29ec0-7741-8172-981c-c634f546e8f2" alt="Notion 博客 | Notion" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://tanghh.notion.site/02ab3b8678004aa69e9e415905ef32a5?v=b7eb215720224ca5827bfaa5ef82cf2d</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://tanghh.notion.site/images/page-cover/nasa_robert_stewart_spacewalk_2.jpg?table=collection&amp;id=4379bc14-5d22-453b-a153-12639616fc01&amp;spaceId=6c096b44-beb9-48ee-8f92-1efdde47f3a3&amp;width=2000&amp;userId=&amp;cache=v2&amp;t=11a29ec0-7741-8172-981c-c634f546e8f2" alt="Notion 博客 | Notion" loading="lazy" decoding="async"/></div></a></div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec077418100aa7efb7aab31a26c" href="https://www.notion.so/tanghh/7c1d570661754c8fbc568e00a01fd70e?v=8c801924de3840b3814aea6f13c8484f&amp;pvs=4"><div><div class="notion-bookmark-title">Notion Blog - EN | Notion</div><div class="notion-bookmark-description">NotionNext Blog</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Fwww.notion.so%2Ffront-static%2Flogo-ios.png?table=block&amp;id=11a29ec0-7741-8100-aa7e-fb7aab31a26c&amp;t=11a29ec0-7741-8100-aa7e-fb7aab31a26c" alt="Notion Blog - EN | Notion" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://www.notion.so/tanghh/7c1d570661754c8fbc568e00a01fd70e?v=8c801924de3840b3814aea6f13c8484f&amp;pvs=4</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Ftanghh.notion.site%2Fimage%2Fhttps%253A%252F%252Ftanghh.notion.site%252Fimages%252Fpage-cover%252Fnasa_robert_stewart_spacewalk_2.jpg%3Ftable%3Dcollection%26id%3Dc0406872-449f-49ab-9f18-e752d92490d5%26spaceId%3D6c096b44-beb9-48ee-8f92-1efdde47f3a3%26width%3D2000%26userId%3D%26cache%3Dv2?table=block&amp;id=11a29ec0-7741-8100-aa7e-fb7aab31a26c&amp;t=11a29ec0-7741-8100-aa7e-fb7aab31a26c" alt="Notion Blog - EN | Notion" loading="lazy" decoding="async"/></div></a></div><div class="notion-text notion-block-11a29ec0774181b9be0ae298848a9b2b">Notion页面中，每篇文章都将有以下属性🤔：</div><table class="notion-simple-table notion-block-11a29ec07741810cabd4dced6c167622"><tbody><tr class="notion-simple-table-row notion-block-11a29ec077418167895af2fb6a351974"><td class="" style="width:148px"><div class="notion-simple-table-cell">属性</div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">必填</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">说明</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">备注</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181709753d3a8d5e5667a"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">title</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell"> 是</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell"> 文章标题</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">ㅤ</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec07741817a94e8da995b747eac"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">status</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">是</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">发布状态</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">（仅当状态为<code class="notion-inline-code">Published</code> 时会被 展示）</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec077418178bb6beb9fc3bb5fe8"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">type</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">是</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">页面类型 (博文<code class="notion-inline-code">Post</code> / 单页(<code class="notion-inline-code">Page</code>)</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">单页不会在博文列表显示 。</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181edbe4af4b13df25a4c"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">summary</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">内容摘要</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">搜索和简略显示会用到</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181aa9bbaceb8affdb509"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">date</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">发布日期</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">在V3.3.9之前的版本此项为必填。</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec077418138b6e3cd70015cc4b4"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">category</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">文章分类</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">可以自定义</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec077418178a6cec745bb164f9e"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">tags</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">文章标签</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">可多个，建议不要太多</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec077418124beabc4137970eda0"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">slug</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">文章短路径</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell"> (每篇文章唯一，请勿 重复）</div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181b6ae6ffdec614827ba"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">icon</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell">否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell">菜单栏图标(仅当<code class="notion-inline-code">Page</code>类型有效)</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell">可以参考：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://fontawesome.com/v6/search">图标库地址</a></div></td></tr><tr class="notion-simple-table-row notion-block-11a29ec0774181f49a34cf5f46863671"><td class="" style="width:148px"><div class="notion-simple-table-cell"><code class="notion-inline-code">password</code></div></td><td class="" style="width:77.00000762939453px"><div class="notion-simple-table-cell"> 否</div></td><td class="" style="width:239.00001525878906px"><div class="notion-simple-table-cell"> 文章加锁</div></td><td class="" style="width:315.66668701171875px"><div class="notion-simple-table-cell"> 需要输入密码才允许访问</div></td></tr></tbody></table><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec0774181cbafc8e803edea4e9f" data-id="11a29ec0774181cbafc8e803edea4e9f"><span><div id="11a29ec0774181cbafc8e803edea4e9f" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181cbafc8e803edea4e9f" title="评论插件"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">评论插件</span></span></h2><div class="notion-text notion-block-11a29ec07741810487c9fd489baa7326">系统支持 Waline\Giscus\Valine\GitTalk\Utterance\Cusdis\Twikoo六种评论插件，并且可以同时开启，点击评论区的Tab来体验。</div><div class="notion-text notion-block-11a29ec077418150b434ee845e6f0a5f">按照以下教程可以开启响应的评论插件</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec0774181019e04f4fb61153f64" href="https://tangly1024.com/article/notionnext-twikoo"><div><div class="notion-bookmark-title">NotionNext配置评论插件Twikoo | TANGLY&#x27;s BLOG</div><div class="notion-bookmark-description">一个简洁、安全、免费的静态网站评论系统，基于 腾讯云开发 。 经评论区网友推荐，我开始使用 Twikoo，一番体验，发现Twikoo真的很强大，目前我决定用它作为主要评论插件。 twikoo支持在页面上直接管理评论、配置插件，非常强大 在最新版本中 NotionNext已经 支持该评论插件，配置 方法很简单： 在Vercel后台添加一个环境变量 NEXT_PUBLIC_COMMENT_ENV_ID ; 值为您部署好的 twikoo 后台地址。以我的举例： 借助vercel，您可以非常快速地部署自己的twikoo后台，用于储存评论数据。 twikoo的后台数据存储是基于MongoDB数据库的，我们可以先注册创建一个免费的在线MongoDB数据库。 创建MongoDB数据库 1.注册账号 创建数据库 这里下方要设置一个允许访问该数据库的IP地址，推荐设置0.0.0.0，即所有地址都允许访问，毕竟我也不知道自己会用什么ip访问这个数据库。 2.获取数据库连接地址 Vercel一键部署 点击Create将twikoo的代码拷入您的仓库 配置MongoDB数据库地址 添加一个配置 MONGODB_URI 环境变量即可，其值为上一步获得的MongoDB连接地址，注意将链接中MONGODB的密码 替换成您设置的。 上述部署完成后，您将获得一个vercel的twikoo后台页面，您可以选择像我一样映射成二级域名 将您的twikoo后台地址配置在NotionNext的后台，并redeploy即可。 到此完成~ 点击右下角的小齿轮即可配置您的管理员密码、并进行更多的功能设置。赶快体验吧~ 可以访问官方文档获取安装部署帮助，并且查看Twikoo的更多特性。 NotionNext支持多种评论插件，可访问以下文章获得帮助：</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Ftangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-8101-9e04-f4fb61153f64&amp;t=11a29ec0-7741-8101-9e04-f4fb61153f64" alt="NotionNext配置评论插件Twikoo | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://tangly1024.com/article/notionnext-twikoo</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1564419320603-628d868a193f%3Fixlib%3Drb-4.0.3%26q%3D80%26fm%3Djpg%26crop%3Dentropy%26cs%3Dtinysrgb?table=block&amp;id=11a29ec0-7741-8101-9e04-f4fb61153f64&amp;t=11a29ec0-7741-8101-9e04-f4fb61153f64" alt="NotionNext配置评论插件Twikoo | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div></a></div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec077418184965af81b8a9f9e4b" href="https://tangly1024.com/article/notion-next-comment-plugin"><div><div class="notion-bookmark-title">NotionNext如何添加评论插件 | TANGLY&#x27;s BLOG</div><div class="notion-bookmark-description">NotionNext支持多种评论插件，其中体验比较好的我个人觉得是Twikoo，您可以参考以下教程进行配置安装： 您也可以选择Valine/Waline，关于Valine/Waline的部署可以访问此篇文章： Utterance 、 Giscus 、Gitalk 其中部署最便捷的当属 Cusdis 和 Utterance 这两个插件。您可以任选一个部署，当然，您也可以选择同时部署多个。 完成效果预览 点击Start for free ，并用Github登录即可 Sign in With Github (点击查看截图) [可选] 配置邮件通知地址，以便收到新评论时邮件通知您，（点击展开截图） 点击Embed Code获取您的应用ID，即data-app-id, 复制这串id备用。 在Vercel后台添加一个环境变量 NEXT_PUBLIC_COMMENT_CUSDIS_APP_ID，值为上面获取到的data-app-id。 完成预览效果 在您的Github中创建一个开源项目用于存放评论 在github中安装utterance插件 允许utterance访问所有仓库，并勾选install，可以只勾选作为评论用的仓库地址。 将用作评论仓库名添加到Vercel添加环境变量 后台 settings→ environment variables → 添加 → save 即可。如下图： 注意， 仓库名的格式是 [您的用户名/您的仓库名] 如下示例 完成预览效果 在您的Github中创建一个开源项目用于存放评论 创建一个授权秘钥，并保存您的ClientID与ClientSecret Authorization callback URL 填写您网站域名 填写配置的效果 ，点击 register application 即可创建。 点击 Generate a new client secret 生成您的密码 复制 Client ID和刚生成的 Client secret （对应图中2和3）备用。 在Vercel后台配置环境变量 NEXT_PUBLIC_COMMENT_GITALK_CLIENT_ID NEXT_PUBLIC_COMMENT_GITALK_CLIENT_SECRET NEXT_PUBLIC_COMMENT_GITALK_CLIENT_ID NEXT_PUBLIC_COMMENT_GITALK_CLIENT_SECRET 项目会在您的Github项目讨论区创建评论数据，便于维护管理 , 完成效果 预览 您可以在Github的Discusstion讨论区随时管理评论。 在您的Github中创建一个开源项目用于存放评论 在项目Setting中开启discussion功能 在Github中安装giscus应用 点击右上方的Install即可，并确认 允许访问仓库数据权限： 默认勾选All repositories即可。也可以只勾选用作评论的仓库，（后续还可以再回来配置） 访问Giscus填写并获取您的Giscus配置参数 主要配置输入您的仓库名，并选择 Discussion分类为 Announcements .</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Ftangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-8184-965a-f81b8a9f9e4b&amp;t=11a29ec0-7741-8184-965a-f81b8a9f9e4b" alt="NotionNext如何添加评论插件 | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://tangly1024.com/article/notion-next-comment-plugin</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Ftangly1024.com%2Fbg_image.jpg?table=block&amp;id=11a29ec0-7741-8184-965a-f81b8a9f9e4b&amp;t=11a29ec0-7741-8184-965a-f81b8a9f9e4b" alt="NotionNext如何添加评论插件 | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div></a></div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-11a29ec07741817887b0de65332abc72" href="https://tangly1024.com/article/notionnext-valine"><div><div class="notion-bookmark-title">NotionNext配置Valine/Waline评论插件 | TANGLY&#x27;s BLOG</div><div class="notion-bookmark-description">Valine插件需要LeanCloud后端提供数据库存储功能，请按照以下步骤配置。 而Waline 的前置步骤和Valine基本一致，只是多了一个部署Waline的Vercel服务步骤。由于Waline配置了完善的后台管理功能，所以使用Waline就不需要再配合Admin-Valine项目运行。 应用创建好以后，进入刚刚创建的应用，选择左下角的 设置&gt; 应用Key，然后就能看到你的 APP ID和 APP Key 了： 为了你的数据安全，请设置自己的 安全域名 ：只有以下设置的域名，才允许访问你的valine数据 支持的Valine配置在NotionNext项目的blog.config.js 中，请在Vercel后台的环境变量中配置： serverURLs在应用内部会尝试自动获取，如果发现获取失败，请手动提供 刚刚创建的应用，选择左下角的 设置&gt; 应用Key，找到 Request 域名 第一行 需要在akismet中注册账号并获取免费的key： https://akismet.com/account ，并在LeanCloud中配置 AKISMET_KEY 变量 参考官方文档，在你的Vercel上部署一个valine应用。而后在你的NotionNext环境变量中添加你的waline服务地址环境变量： NEXT_PUBLIC_WALINE_SERVER_URL 即可生效。</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-icon"><img src="https://www.notion.so/image/https%3A%2F%2Ftangly1024.com%2Ffavicon.ico?table=block&amp;id=11a29ec0-7741-8178-87b0-de65332abc72&amp;t=11a29ec0-7741-8178-87b0-de65332abc72" alt="NotionNext配置Valine/Waline评论插件 | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div><div class="notion-bookmark-link-text">https://tangly1024.com/article/notionnext-valine</div></div></div><div class="notion-bookmark-image"><img style="object-fit:cover" src="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F10eb466a-599b-4513-bcbf-2331cf88078d%2Fpexels-photo-546819.webp?table=block&amp;id=bee1fccf-a3bd-47a1-a7be-83cc71372d83&amp;cache=v2&amp;t=11a29ec0-7741-8178-87b0-de65332abc72&amp;width=800" alt="NotionNext配置Valine/Waline评论插件 | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div></a></div><div class="notion-blank notion-block-11a29ec07741811db133f1e8a84f5d69"> </div><div class="notion-file notion-block-11a29ec07741816ab2a7ddac20d40fda"><a target="_blank" rel="noopener noreferrer" class="notion-file-link" href="https://notion.so/signed/https%3A%2F%2Fprod-files-secure.s3.us-west-2.amazonaws.com%2Fbda82445-d97f-46d1-93c2-63436d2c7cc0%2F20ecd1ff-e4de-4471-b86f-6f14ec891fc0%2F%25E6%25B5%258B%25E8%25AF%2595%25E5%25B5%258C%25E5%2585%25A5PDF.pdf?table=block&amp;id=11a29ec0-7741-816a-b2a7-ddac20d40fda"><svg class="notion-file-icon" viewBox="0 0 30 30"><path d="M22,8v12c0,3.866-3.134,7-7,7s-7-3.134-7-7V8c0-2.762,2.238-5,5-5s5,2.238,5,5v12c0,1.657-1.343,3-3,3s-3-1.343-3-3V8h-2v12c0,2.762,2.238,5,5,5s5-2.238,5-5V8c0-3.866-3.134-7-7-7S6,4.134,6,8v12c0,4.971,4.029,9,9,9s9-4.029,9-9V8H22z"></path></svg><div class="notion-file-info"><div class="notion-file-title">测试嵌入PDF.pdf</div><div class="notion-file-size">469.5KB</div></div></a></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-11a29ec07741819897c5ec897c6b563a" data-id="11a29ec07741819897c5ec897c6b563a"><span><div id="11a29ec07741819897c5ec897c6b563a" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec07741819897c5ec897c6b563a" title="引用文献"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title">引用文献</span></span></h2><h4 class="notion-h notion-h3 notion-h-indent-1 notion-block-11a29ec0774181ef9527c8a5deef8e7b" data-id="11a29ec0774181ef9527c8a5deef8e7b"><span><div id="11a29ec0774181ef9527c8a5deef8e7b" class="notion-header-anchor"></div><a class="notion-hash-link" href="#11a29ec0774181ef9527c8a5deef8e7b" title="1. 关于李白"><svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg></a><span class="notion-h-title"><a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://zh.wikipedia.org/zh-sg/%E6%9D%8E%E7%99%BD">1. 关于李白</a></span></span></h4><div class="notion-text notion-block-11a29ec077418126b04ac68b02b6f580">引用另一篇文章→<a class="notion-link" href="/11a29ec0774181f49679f752edc51a0f"><span class="notion-page-title"><div class="notion-page-icon-inline notion-page-icon-span"><span class="notion-page-title-icon notion-page-icon" role="img" aria-label="📖">📖</span></div><span class="notion-page-title-text">模板说明</span></span></a> </div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[加锁文章 - 密码123456]]></title>
            <link>https://tangly1024.com/article/example-2</link>
            <guid>https://tangly1024.com/article/example-2</guid>
            <pubDate>Fri, 05 Nov 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[本文需要输入密码才可访问，密码: 123456]]></description>
            <content:encoded><![CDATA[本文需要输入密码才可访问，密码: 123456]]></content:encoded>
        </item>
    </channel>
</rss>