<?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>Gordon的笔记小站</title>
        <link>https://notion.9876566.xyz/</link>
        <description>Tag: 一些个人工作和研究时的思考</description>
        <lastBuildDate>Tue, 21 Jan 2025 08:05:12 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>zh-CN</language>
        <copyright>All rights reserved 2025, gordon</copyright>
        <item>
            <title><![CDATA[科学炼丹方法-pytorch篇]]></title>
            <link>https://notion.9876566.xyz/article/pytorch-1</link>
            <guid>https://notion.9876566.xyz/article/pytorch-1</guid>
            <pubDate>Sat, 22 Oct 2022 00:00:00 GMT</pubDate>
            <description><![CDATA[主要内容概述
• 介绍了PyTorch性能优化的关键方法，包括显存调优、CPU占用优化和数据加载优化
• 针对显存优化，提供了inplace操作、变量删除和gradient设置等具体方法
• 数据加载优化重点关注prefetcher的使用和数据格式选择
• 包含了针对Colab环境的特定优化技巧，如避免休眠和SSH连接方法
• 提供了实用的深度学习训练建议，包括预处理策略和网络结构选择]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-90dfc9b394f8405fa57937ef2b6fff38"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-e4a8e66692f546f0bcaac5b73104c2a7" data-id="e4a8e66692f546f0bcaac5b73104c2a7"><span><div id="e4a8e66692f546f0bcaac5b73104c2a7" class="notion-header-anchor"></div><a class="notion-hash-link" href="#e4a8e66692f546f0bcaac5b73104c2a7" 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><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-a86f8385556b4d4ab285786207841bb8" data-id="a86f8385556b4d4ab285786207841bb8"><span><div id="a86f8385556b4d4ab285786207841bb8" class="notion-header-anchor"></div><a class="notion-hash-link" href="#a86f8385556b4d4ab285786207841bb8" 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-f13c58aff2154e5695cfe5b6c59e061e">常用命令：</div><ul class="notion-list notion-list-disc notion-block-087b903872c848619ec7a986709a6066"><li>使用inplace操作，常用在relu这种地方，设置inplace=True</li></ul><ul class="notion-list notion-list-disc notion-block-fe0e06c5020949579565f4aab8a9e1f9"><li>使用del 删除不用的变量（可显著释放内存，暂未测试是否可显著释放显存）</li></ul><ul class="notion-list notion-list-disc notion-block-891acb7376f5479093cf0bec6eef73d6"><li>无需求导的变量建议require_grad设置为False。或者detach_()</li><ul class="notion-list notion-list-disc notion-block-891acb7376f5479093cf0bec6eef73d6"><li>还有一种无grad的变量，可以使用tensor.data获取，类似.detach()，但.data后修改数据不会报错</li></ul></ul><div class="notion-blank notion-block-24443f81edf24e49b477caf6b74f4141"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-4571cfa2d1534052b2fb347295332922" data-id="4571cfa2d1534052b2fb347295332922"><span><div id="4571cfa2d1534052b2fb347295332922" class="notion-header-anchor"></div><a class="notion-hash-link" href="#4571cfa2d1534052b2fb347295332922" title="针对CPU占用较高的调优"><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">针对CPU占用较高的调优</span></span></h2><div class="notion-text notion-block-d7a7586af9d64dc5aeef1f1e34ee16ad">使用H5,LMDB这种数据集，避免CPU频繁加密解密图片</div><div class="notion-text notion-block-c6eec98222404babba2582848d1ee43a">读图片效率对比：</div><ul class="notion-list notion-list-disc notion-block-981e6998e145498b9500a5353c2d0428"><li>PIL最慢，但兼容性较好，可以使用。resize使用PIL自带方法会比转numpy快。</li></ul><ul class="notion-list notion-list-disc notion-block-4bdb361241d34ec78e510d1a7e709faa"><li>MXNet（MX.image库）据说是将图片读成numpy格式效率最高的，略高于CV2</li></ul><ul class="notion-list notion-list-disc notion-block-ccb8b0cebdc54a3fbdf7b4835d34b5e2"><li>CV2快，有坑。读出来颜色默认为BGR, 通道默认为HWC。（Torch和PIL默认都是RGB,CHW）</li></ul><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-e51af9ed76bd4f159ed9eb119473bffc" data-id="e51af9ed76bd4f159ed9eb119473bffc"><span><div id="e51af9ed76bd4f159ed9eb119473bffc" class="notion-header-anchor"></div><a class="notion-hash-link" href="#e51af9ed76bd4f159ed9eb119473bffc" 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-1bf330e479114b7985d35640f142e909">适用于IO瓶颈（dataloader卡比较长的时间）</div><div class="notion-text notion-block-b7aaf2f276e8444aa5af59ee768b3bfe">以上内容来自APEX（NVIDIA-Advanced Extension for Pytorch）</div><div class="notion-text notion-block-ecd8de5b6bcb4774bc522d5db1ea88f0">也可以使用APEX进行混合精度训练进一步提升速度，可参考APEX文档</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-8f522097983a48b79a13529214654e64" href="https://nvidia.github.io/apex/amp.html"><div><div class="notion-bookmark-title">apex.amp - Apex 0.1.0 documentation</div><div class="notion-bookmark-description">This page documents the updated API for Amp (Automatic Mixed Precision), a tool to enable Tensor Core-accelerated training in only 3 lines of Python. A runnable, comprehensive Imagenet example demonstrating good practices can be found on the Github page. GANs are a tricky case that many people have requested.</div><div class="notion-bookmark-link"><div class="notion-bookmark-link-text">https://nvidia.github.io/apex/amp.html</div></div></div></a></div><figure class="notion-asset-wrapper notion-asset-wrapper-image notion-block-4bc3fb609fb94c3ca9bad5f2c719e211"><div style="position:relative;display:flex;justify-content:center;align-self:center;width:100%;max-width:100%;flex-direction:column"><img style="object-fit:cover" src="https://cdn.jsdelivr.net/gh/gordonx8/picbed@master/uPic/NkO1ZJ.png?t=4bc3fb60-9fb9-4c3c-a9ba-d5f2c719e211" alt="notion image" loading="lazy" decoding="async"/></div></figure><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-87febb5c628d4a0b84e1e493229d3789" data-id="87febb5c628d4a0b84e1e493229d3789"><span><div id="87febb5c628d4a0b84e1e493229d3789" class="notion-header-anchor"></div><a class="notion-hash-link" href="#87febb5c628d4a0b84e1e493229d3789" title="colab篇"><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">colab篇</span></span></h2><div class="notion-text notion-block-b3f7923af77b40e7be52679b08ee754d">避免colab休眠：</div><div class="notion-text notion-block-65c8c0106dc14a8d810b5303208cdcfb">使用ssh连接colab</div><div class="notion-text notion-block-45588af2ce1a4e87b1cb3db9c39aad7d">Colab常用小命令，魔法函数</div><div class="notion-text notion-block-aba884eb05444175a4b773100c4a23e5">Colab 代码段中使用markdown语法可避免显示长串代码 </div><div class="notion-text notion-block-02983c82832440949a515c7535a55a41">使用Ngrok开启tensorboard（这个还未实验）</div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1820faf40dc380bfafb9ed84faaf70a3" data-id="1820faf40dc380bfafb9ed84faaf70a3"><span><div id="1820faf40dc380bfafb9ed84faaf70a3" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1820faf40dc380bfafb9ed84faaf70a3" title="在colab中使用tensorboard"><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">在colab中使用tensorboard</span></span></h2><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-c2a2b951792d4d4d9461117c049683be" data-id="c2a2b951792d4d4d9461117c049683be"><span><div id="c2a2b951792d4d4d9461117c049683be" class="notion-header-anchor"></div><a class="notion-hash-link" href="#c2a2b951792d4d4d9461117c049683be" 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-file notion-block-1820faf40dc3804d9271c019a38032a9"><a target="_blank" rel="noopener noreferrer" class="notion-file-link" href="https://www.zhihu.com/question/25097993/answer/127472322"><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">127472322</div></div></a></div><div class="notion-blank notion-block-dbe0f263a7b84d4fa528deeca9cb100c"> </div><div class="notion-text notion-block-1d37a9015613456d8ae66f2ddce5e90e">预处理：只需要做-mean/std的零中心化就够了，PCA和白化都用不上。我个人观点，既然CNN能学习encoder，PCA用不用其实关系不大，大不了让网络自己学习出来一个。</div><div class="notion-text notion-block-7117bf235c4b42edbbe5d93f71f8c97a">数据一定要做shuffle。理解网络原理最重要，尤其是CNN的卷积部分，你需要理解sobel算子的边界检测原理。要多用Dropout（不仅能防止过拟合，还相当于低成本的Ensemble，虽然会让训练变慢一些，同时建议适当增加网络参数，这也会让训练更慢一点）。CNN更适合是/否类的问题，如果任务复杂，建议先用分类任务训练模型再做finetune。CV领域就用ReLU，用3x3卷积核，用xavier初始化。LRN其实可以不用，不行再尝试。filter数量用2^n。多尺度的图片输入（或网络内部使用多尺度结果）效果很好。第一层filter数量不要太少，否则学不出底层特征。优化器选择sgd还是adam看个人，一般对网络影响不大，我习惯用sgd+momentum。batch normalization很好用，建议使用。不要盲信论文，觉得某些结构可能有效就去试试。95%的情况下你用不到40层以上的模型。shortcut连接是有效的。暴力调参最实用，毕竟时间宝贵，况且你调好的模型可能很快就要换掉了。</div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Opencore黑苹果折腾]]></title>
            <link>https://notion.9876566.xyz/article/BlackApple-Opencore</link>
            <guid>https://notion.9876566.xyz/article/BlackApple-Opencore</guid>
            <pubDate>Fri, 20 Jan 2023 00:00:00 GMT</pubDate>
            <description><![CDATA[声明：本文章内容可能已经过时。由于Apple 全面转战ARM架构，X86黑果基本已没太多作用]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-3fc96cf242404cd3b9379fc2ce131590"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-d9f7ade155cf428ea59a0a7d75cee791" data-id="d9f7ade155cf428ea59a0a7d75cee791"><span><div id="d9f7ade155cf428ea59a0a7d75cee791" class="notion-header-anchor"></div><a class="notion-hash-link" href="#d9f7ade155cf428ea59a0a7d75cee791" title="Part0（黑白苹果都可用）："><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">Part0（黑白苹果都可用）：</span></span></h2><details class="notion-toggle notion-block-7d03c3c822d641feabdb4970fdfcde9c"><summary>电源管理设置pmset</summary><div><div class="notion-text notion-block-a4712f11f5714b798ab4487fa6cc91f6">Ref：   <a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://sspai.com/post/61379">https://sspai.com/post/61379</a></div><div class="notion-blank notion-block-09f47a2995534e0bb99fccc639dc7357"> </div></div></details><div class="notion-text notion-block-2ee396a610914363aa3c6c27b775e3ca">最好用的远程桌面还是微软的RDP客户端，适用范围广</div><div class="notion-text notion-block-ff7f83ec864f4bbf9f662980a7d06d4d">苹果远程桌面ARD洗白教程：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="http://www.sdifen.com/remotedesktop.html">http://www.sdifen.com/remotedesktop.html</a></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-0f9169b539f34695a8a80a3bd333fbb8" data-id="0f9169b539f34695a8a80a3bd333fbb8"><span><div id="0f9169b539f34695a8a80a3bd333fbb8" class="notion-header-anchor"></div><a class="notion-hash-link" href="#0f9169b539f34695a8a80a3bd333fbb8" title="Part1：OC EFI配置"><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">Part1：OC EFI配置</span></span></h2><details class="notion-toggle notion-block-421115953f5e4d2590ed2160ab91a678"><summary>国外总结得很好的一份安装指南</summary><div><div class="notion-text notion-block-c6d00540eaad4f1680027378ebd984f9">link：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://dortania.github.io/OpenCore-Install-Guide/troubleshooting/extended/post-issues.html#disabling-sip">https://dortania.github.io/OpenCore-Install-Guide/troubleshooting/extended/post-issues.html#disabling-sip</a></div></div></details><details class="notion-toggle notion-block-1635dd448889403b86ff2bb139d0f86f"><summary>修复电源管理（意外重启、休眠等）</summary><div><div class="notion-text notion-block-5fa78f547a904c3e84947a24a2d2652d">Ref：DSDT设置 <a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://www.kancloud.cn/chandler/mac_os/482278">https://www.kancloud.cn/chandler/mac_os/482278</a></div></div></details><details class="notion-toggle notion-block-358aac25a072452a955f85e6a93da3de"><summary>Intel AX200外挂驱动</summary><div><div class="notion-text notion-block-52a4be6f38e44dab855649269cdd242d">项目地址：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://github.com/OpenIntelWireless/itlwm/releases">https://github.com/OpenIntelWireless/itlwm/releases</a></div><div class="notion-text notion-block-1d798093b570433a9bba78a766a6cc46">蓝牙驱动需要另外挂载</div></div></details><details class="notion-toggle notion-block-e78d359569694a709bd9e977a964b075"><summary>修复黑苹果外接显示器紫屏</summary><div><div class="notion-text notion-block-3c7069f071af419d8a38ff1b5d02b3a1">refer:<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://blog.skk.moe/post/hackintosh-fix-magenta-screen/">https://blog.skk.moe/post/hackintosh-fix-magenta-screen/</a></div><div class="notion-text notion-block-738972b5196147f28e99646e1a123231">smzdm里面这个人遇到的坑 <a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://post.smzdm.com/p/adwn0k3p/">https://post.smzdm.com/p/adwn0k3p/</a></div></div></details><div class="notion-blank notion-block-86510191646a4e37a4980f82abf6d855"> </div><div class="notion-text notion-block-f8e276474c8c43bab9c5ba6d6d21d735">黑苹果系统id对应机型列表（完整）：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://blog.daliansky.net/Intel-core-display-platformID-finishing.html">https://blog.daliansky.net/Intel-core-display-platformID-finishing.html</a></div><div class="notion-blank notion-block-659756f3a8b842668a6c9a7179b4357a"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-65eb386b181e43b3904cd086201478d7" data-id="65eb386b181e43b3904cd086201478d7"><span><div id="65eb386b181e43b3904cd086201478d7" class="notion-header-anchor"></div><a class="notion-hash-link" href="#65eb386b181e43b3904cd086201478d7" title="Part2：安装系统盘制作"><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">Part2：安装系统盘制作</span></span></h2><div class="notion-text notion-block-cca91ec42ec34ff4bc2ee0a8217f769c">制作安装系统盘需要以下材料：</div><ul class="notion-list notion-list-disc notion-block-d24b219921cd4b9ba05afb55e8f109c5"><li>一个至少16GB的U盘（建议USB3.0及以上）</li></ul><ul class="notion-list notion-list-disc notion-block-6413e2c347204de79117c39295a565b9"><li>已下载的macOS系统镜像（.dmg格式）</li></ul><ul class="notion-list notion-list-disc notion-block-a8953661a70641ca80248c418256d439"><li>TransMac软件（Windows下制作启动盘）或者Terminal（macOS下制作）</li></ul><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-e40dd4a1308d499b974a50dbdf835633" data-id="e40dd4a1308d499b974a50dbdf835633"><span><div id="e40dd4a1308d499b974a50dbdf835633" class="notion-header-anchor"></div><a class="notion-hash-link" href="#e40dd4a1308d499b974a50dbdf835633" title="Part3：在线安装黑苹果盘制作"><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">Part3：在线安装黑苹果盘制作</span></span></h2><div class="notion-text notion-block-1a4a5198d6704644ba5213393d45cba9">来自网络总结攻略：</div><div class="notion-text notion-block-6c94992c53284f089aa580f3da216f70"><a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://github.com/cattyhouse/oc-guide">https://github.com/cattyhouse/oc-guide</a></div><div class="notion-blank notion-block-161da340c17f463f9972aab08ede9491"> </div><details class="notion-toggle notion-block-ac9b40f0f31e4c99ba0d319d2176d252"><summary>详细步骤</summary><div><ol start="1" class="notion-list notion-list-numbered notion-block-5d0fffdb8e7f404081f6b9aa5f63de1b"><li>获取 python 脚本:</li><ol class="notion-list notion-list-numbered notion-block-5d0fffdb8e7f404081f6b9aa5f63de1b"></ol></ol><ol start="2" class="notion-list notion-list-numbered notion-block-e0d72e6abed841a686b5d4bc972df737"><li>下载最新的 macOS Recovery:</li><ol class="notion-list notion-list-numbered notion-block-e0d72e6abed841a686b5d4bc972df737"></ol></ol><ol start="3" class="notion-list notion-list-numbered notion-block-5a1ca0580cbd48bebac4c5ff3ffe5433"><li>下载其他 macOS 版本的 Recovery 的命令请参考 <a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://raw.githubusercontent.com/acidanthera/OpenCorePkg/master/Utilities/macrecovery/recovery_urls.txt">recovery_urls.txt</a>, 命令最后需要加一个 download</li></ol><div class="notion-text notion-block-941e687c1ffa412787fc67ec0da18c87">步骤：</div><ol start="1" class="notion-list notion-list-numbered notion-block-e5b6b70b7ca247db843489495fec6322"><li>准备好一个容量 1GB 以上的 U 盘, 格式化成 <b>Fat32</b> 格式.</li></ol><ol start="2" class="notion-list notion-list-numbered notion-block-6c6fab0f18f14453bb8bfb5f5ee5c7d3"><li>将 OpenCore 的 EFI 复制到 U 盘的 <b>根目录</b></li></ol><ol start="3" class="notion-list notion-list-numbered notion-block-db353ca07988481ba287b1c8d68bc3b0"><li>在 U 盘的 <b>根目录</b> 创建一个文件夹名字叫做: <code class="notion-inline-code"><b>com.apple.recovery.boot</b></code></li></ol><ol start="4" class="notion-list notion-list-numbered notion-block-b5a34960f259491cab10ed997ad120ca"><li>将 <b>BaseSystem.chunklist 和 BaseSystem.dmg</b> 复制到 <code class="notion-inline-code"><b>com.apple.recovery.boot</b></code> 里面</li></ol><ol start="5" class="notion-list notion-list-numbered notion-block-94e996e842b74cf68a2ea5aa240a4827"><li>给启动文件命名</li><ol class="notion-list notion-list-numbered notion-block-94e996e842b74cf68a2ea5aa240a4827"><li>在文件夹 <code class="notion-inline-code"><b>com.apple.recovery.boot</b></code> 下面新建一个隐藏文件 <code class="notion-inline-code"><b>.contentDetails</b></code></li><li>内容可以随便写, 比如 <code class="notion-inline-code">Mojave Boot From Recovery</code>, 这个名字会出现在 OpenCore 的启动菜单上.</li></ol></ol><ol start="6" class="notion-list notion-list-numbered notion-block-cee2141989ad44a6a31c58112cb9730f"><li>最终 U 盘上的文件结构看起来像这样 ( <b>注意 EFI 文件夹与 com.apple.recovery.boot 文件夹是并列关系</b> ):</li><ol class="notion-list notion-list-numbered notion-block-cee2141989ad44a6a31c58112cb9730f"></ol></ol><ol start="7" class="notion-list notion-list-numbered notion-block-3177ac7c0ffb43c2a258bc87ce593ed3"><li>用 U 盘启动电脑选择 <code class="notion-inline-code">Mojave Boot From Recovery</code>, 接下来就进入正常的安装界面</li></ol></div></details><div class="notion-blank notion-block-815ce223add642a6909f83b605ab1a51"> </div><div class="notion-blank notion-block-5a55fdf201fb4832b743f83cdbc4ddec"> </div><div class="notion-text notion-block-b646ae57053a48ce9caad2349fd0a108">Reference：</div><ol start="1" class="notion-list notion-list-numbered notion-block-9d104d333ed24a1db60552b7e486b43b"><li>黑果小兵-精解opencore：<a target="_blank" rel="noopener noreferrer" class="notion-link" href="https://blog.daliansky.net/OpenCore-BootLoader.html">https://blog.daliansky.net/OpenCore-BootLoader.html</a></li></ol><div class="notion-blank notion-block-ae83989cdb794104b09296eb4766f4cf"> </div></main></div>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[模板说明]]></title>
            <link>https://notion.9876566.xyz/article/guide</link>
            <guid>https://notion.9876566.xyz/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-1810faf40dc3818dacc7e14b8e037a83"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc3814da0d7fffa8bef95f2" data-id="1810faf40dc3814da0d7fffa8bef95f2"><span><div id="1810faf40dc3814da0d7fffa8bef95f2" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3814da0d7fffa8bef95f2" 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-1810faf40dc381e4924df15215fb86fa">请访问教程获取帮助</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-1810faf40dc3813c8304f74da8fee677" 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=1810faf4-0dc3-813c-8304-f74da8fee677&amp;t=1810faf4-0dc3-813c-8304-f74da8fee677" 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-1810faf40dc38162ba76e87f6615bc77" 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=1810faf4-0dc3-8162-ba76-e87f6615bc77&amp;t=1810faf4-0dc3-8162-ba76-e87f6615bc77" 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=1810faf4-0dc3-8162-ba76-e87f6615bc77&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-1810faf40dc3817ba9d3cc0422990b27" data-id="1810faf40dc3817ba9d3cc0422990b27"><span><div id="1810faf40dc3817ba9d3cc0422990b27" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3817ba9d3cc0422990b27" 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-1810faf40dc381868bf5f1534ecaccf0">NotionNext项目必须绑定一个Notion数据库才能使用。请访问教程获取帮助</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-1810faf40dc38117a732fff1a66de785" 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=1810faf4-0dc3-8117-a732-fff1a66de785&amp;t=1810faf4-0dc3-8117-a732-fff1a66de785" 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=1810faf4-0dc3-8117-a732-fff1a66de785&amp;t=1810faf4-0dc3-8117-a732-fff1a66de785" alt="Vercel云部署 | NotionNext文档" loading="lazy" decoding="async"/></div></a></div><div class="notion-sync-block notion-block-1810faf40dc381e1a1faee90ea3e1d79"><h3 class="notion-h notion-h2 notion-block-1810faf40dc38199a955ce1bb605ec4d" data-id="1810faf40dc38199a955ce1bb605ec4d"><span><div id="1810faf40dc38199a955ce1bb605ec4d" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38199a955ce1bb605ec4d" 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-1810faf40dc381a985cdc5c2ac30c32d">Notion数据库中，每条数据都将有以下属性🤔：</div><table class="notion-simple-table notion-block-1810faf40dc3819284e2ebc095f1d8ec"><tbody><tr class="notion-simple-table-row notion-block-1810faf40dc381c9a965d69ce36f1559"><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-1810faf40dc3814e8ffac93070b6c383"><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-1810faf40dc3814280fcceca660f53ee"><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-1810faf40dc381d9ae9fe45fbc450592"><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-1810faf40dc3810395f1f868349af865"><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-1810faf40dc38182bc7ac27d5bf7233a"><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-1810faf40dc38137bbefd86ea1b0cd26"><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-1810faf40dc3810f9ed1c168d6f8ffd4"><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-1810faf40dc3811e8de7cfb3928c7c65"><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-1810faf40dc38165b588e60f6c045fea"><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-1810faf40dc381409b9cd91109c525a8"><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-1810faf40dc3812c85f8e96b54fe97fa">数据库的每一列有不同的功能；

<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-1810faf40dc381468cfac3dd2131fe86"><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-1810faf40dc381fa9d7ad0761b362831"><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-1810faf40dc381059152c87d8756711f"><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[示例文章]]></title>
            <link>https://notion.9876566.xyz/article/example-1</link>
            <guid>https://notion.9876566.xyz/article/example-1</guid>
            <pubDate>Mon, 20 Jan 2025 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-1810faf40dc381398caee577e2460334"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc38105b458d02824e5b9e2" data-id="1810faf40dc38105b458d02824e5b9e2"><span><div id="1810faf40dc38105b458d02824e5b9e2" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38105b458d02824e5b9e2" 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-1810faf40dc381d2b4f1f3a4b0b1057b"><div>书中自有黄金屋，书中自有颜如玉</div></blockquote><div class="notion-callout notion-gray_background_co notion-block-1810faf40dc381729d77d3c58d5b9c66"><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-1810faf40dc38189b3acc4461c45b10b" data-id="1810faf40dc38189b3acc4461c45b10b"><span><div id="1810faf40dc38189b3acc4461c45b10b" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38189b3acc4461c45b10b" 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-1810faf40dc3818cb4eacdf45197a33a">李白〔唐代〕<a target="_blank" rel="noopener noreferrer" class="notion-link" href="#a47eb4929c654ac4b8c895d00023a97e">参考[1]</a></div><div class="notion-text notion-block-1810faf40dc38151a91fc34d0a4d2b84">君不见黄河之水天上来，奔流到海不复回。
君不见高堂明镜悲白发，朝如青丝暮成雪。
人生得意须尽欢，莫使金樽空对月。
天生我材必有用，千金散尽还复来。
烹羊宰牛且为乐，会须一饮三百杯。
岑夫子，丹丘生，将进酒，杯莫停。
与君歌一曲，请君为我倾耳听。
钟鼓馔玉不足贵，但愿长醉不愿醒。
古来圣贤皆寂寞，惟有饮者留其名。
陈王昔时宴平乐，斗酒十千恣欢谑。
主人何为言少钱，径须沽取对君酌。
五花马、千金裘，呼儿将出换美酒，与尔同销万古愁。</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-1810faf40dc381f99641d178e49a4854" 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=1810faf4-0dc3-81f9-9641-d178e49a4854&amp;t=1810faf4-0dc3-81f9-9641-d178e49a4854" 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=1810faf4-0dc3-81f9-9641-d178e49a4854&amp;t=1810faf4-0dc3-81f9-9641-d178e49a4854" alt="TANGLY&#x27;s BLOG | 记录思考、分享我的学习笔记" loading="lazy" decoding="async"/></div></a></div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc381429ac8dc65c6b58a4f" data-id="1810faf40dc381429ac8dc65c6b58a4f"><span><div id="1810faf40dc381429ac8dc65c6b58a4f" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381429ac8dc65c6b58a4f" 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-1810faf40dc381fa8b16c68837ca5825" data-id="1810faf40dc381fa8b16c68837ca5825"><span><div id="1810faf40dc381fa8b16c68837ca5825" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381fa8b16c68837ca5825" 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-1810faf40dc381dab4e6f02b83603682"><summary>其他更多语言</summary><div></div></details><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc381a58ef9f8d2c9730c49" data-id="1810faf40dc381a58ef9f8d2c9730c49"><span><div id="1810faf40dc381a58ef9f8d2c9730c49" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381a58ef9f8d2c9730c49" 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-1810faf40dc38181b2c8d7e06b5a350e"><li>数学公式</li><ul class="notion-list notion-list-disc notion-block-1810faf40dc38181b2c8d7e06b5a350e"></ul></ul><ul class="notion-list notion-list-disc notion-block-1810faf40dc381329aa0c753ce3e2b21"><li>化学方程</li><ul class="notion-list notion-list-disc notion-block-1810faf40dc381329aa0c753ce3e2b21"><div class="notion-text notion-block-1810faf40dc3819c9672d3bea06aa6cb"></div></ul></ul><details class="notion-toggle notion-block-1810faf40dc381239ac2ed6ad59f04d8"><summary>其他更多公式</summary><div><div class="notion-blank notion-block-1810faf40dc381b7bdfec6c865536eff"> </div></div></details><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc381e09fd8f102805e72bc" data-id="1810faf40dc381e09fd8f102805e72bc"><span><div id="1810faf40dc381e09fd8f102805e72bc" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381e09fd8f102805e72bc" 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-1810faf40dc3811aba53f3448847df21"><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-1810faf40dc38153ba6ecb2181923c68" data-id="1810faf40dc38153ba6ecb2181923c68"><span><div id="1810faf40dc38153ba6ecb2181923c68" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38153ba6ecb2181923c68" 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-1810faf40dc3816aa66ef1e991502fb3"><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%2F69d3aa8b-4702-4cbd-98b0-aa9575404840%2Ffab11580-96c3-4230-90f6-05257f00fb0a%2F%25E6%25B5%258B%25E8%25AF%2595%25E5%25B5%258C%25E5%2585%25A5PDF.pdf?table=block&amp;id=1810faf4-0dc3-816a-a66e-f1e991502fb3"><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-1810faf40dc38123aab8d4c63af01f80"><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%2F69d3aa8b-4702-4cbd-98b0-aa9575404840%2F69f6fdf6-9aab-485a-a73d-d5c0d3f324db%2F%25E4%25B8%258B%25E8%25BD%25BDPDF%25E9%2599%2584%25E4%25BB%25B6-2.pdf?table=block&amp;id=1810faf4-0dc3-8123-aab8-d4c63af01f80"><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-1810faf40dc3819c9a0cdb2e9af836c4" data-id="1810faf40dc3819c9a0cdb2e9af836c4"><span><div id="1810faf40dc3819c9a0cdb2e9af836c4" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3819c9a0cdb2e9af836c4" 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-1810faf40dc381399fb6e173ca811317"><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-1810faf40dc381c5ad2eed47c1d1bb35"><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%2F69d3aa8b-4702-4cbd-98b0-aa9575404840%2Fc876828e-2768-4863-b6d3-ad97b32223d3%2FWX20201027-1015302x.png?table=block&amp;id=1810faf4-0dc3-81c5-ad2e-ed47c1d1bb35&amp;t=1810faf4-0dc3-81c5-ad2e-ed47c1d1bb35&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-1810faf40dc38161995bc67a42e9f029"><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="/1810faf40dc38117a8d6da228ae59914"><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="/1810faf40dc3818e9158f65e0d40b711"><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-1810faf40dc381499146c500c0b4bc52" data-id="1810faf40dc381499146c500c0b4bc52"><span><div id="1810faf40dc381499146c500c0b4bc52" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381499146c500c0b4bc52" 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-1810faf40dc38108a372fc552321aabe"><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-1810faf40dc381b8a495f9b19926efc7" data-id="1810faf40dc381b8a495f9b19926efc7"><span><div id="1810faf40dc381b8a495f9b19926efc7" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381b8a495f9b19926efc7" 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-1810faf40dc381e0bab7c3a901bf8fed"><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-1810faf40dc3813bba30c5626a4c8004" data-id="1810faf40dc3813bba30c5626a4c8004"><span><div id="1810faf40dc3813bba30c5626a4c8004" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3813bba30c5626a4c8004" 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-1810faf40dc38137abe0d4568a13b0cf"><div class="notion-column notion-block-1810faf40dc381f98437d1cd9dabce17" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><div class="notion-text notion-teal_background notion-block-1810faf40dc3813e9a2cc0b24188682c">家庭</div><div class="notion-to-do notion-block-1810faf40dc38166844cf95789e483ec"><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-1810faf40dc381a18a22d886236d69d6"><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-1810faf40dc38121b3d5c3a3f3a212f4" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><div class="notion-text notion-blue_background notion-block-1810faf40dc3819c98d2d052b6003feb">事业</div><div class="notion-to-do notion-block-1810faf40dc38199913ced40348ad7f9"><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-1810faf40dc38194877bf6864a89d533"><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-1810faf40dc3818e97c4d97bc01baf91" data-id="1810faf40dc3818e97c4d97bc01baf91"><span><div id="1810faf40dc3818e97c4d97bc01baf91" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3818e97c4d97bc01baf91" 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-1810faf40dc381a7ada7e8ec1a45089e"><summary>点击展开</summary><div><details class="notion-toggle notion-block-1810faf40dc381489b52ccfd8546b5b1"><summary>点击展开</summary><div><details class="notion-toggle notion-block-1810faf40dc3816dabafe83b15a86609"><summary>点击展开</summary><div><div class="notion-text notion-block-1810faf40dc381bda94fef28ed610151">内容可以多级嵌套</div></div></details></div></details></div></details><hr class="notion-hr notion-block-1810faf40dc381fa822cc0988928c86c"/><div class="notion-blank notion-block-1810faf40dc381fbaeedf6195ee6993c"> </div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc38117bed9d1001f274c52" data-id="1810faf40dc38117bed9d1001f274c52"><span><div id="1810faf40dc38117bed9d1001f274c52" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38117bed9d1001f274c52" 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-1810faf40dc381d2b0bcd430bbdff7d8">Notion支持将不同页面的块进行同步，即 SyncBlock，以下是来自另一个页面的块：</div><div class="notion-sync-block notion-block-1810faf40dc38186a0f4e10174d34ac6"><div class="notion-text notion-block-1810faf40dc3818f9b70db1abee5dbba">【sync-block】这是一段来自示例文章-3的段落 ，通过 SyncBlock同步。</div></div><div class="notion-callout notion-gray_background_co notion-block-1810faf40dc3810a80eceb4e4cdec1c3"><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-1810faf40dc38195827ec847bbe87b04"><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%2F69d3aa8b-4702-4cbd-98b0-aa9575404840%2Fe078a58d-d9a8-48ac-8489-34d9d71b03c8%2FUntitled.png?table=block&amp;id=1810faf4-0dc3-8195-827e-c847bbe87b04&amp;t=1810faf4-0dc3-8195-827e-c847bbe87b04&amp;width=528&amp;cache=v2" alt="notion image" loading="lazy" decoding="async"/></div></figure></div></div><div class="notion-blank notion-block-1810faf40dc381ad87b5ddfc416d6574"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc3815db7bdc6267f55fca0" data-id="1810faf40dc3815db7bdc6267f55fca0"><span><div id="1810faf40dc3815db7bdc6267f55fca0" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3815db7bdc6267f55fca0" 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-1810faf40dc381d394dadef308d8d5e3">heading标题在博客中自动转为目录</div><div class="notion-row notion-block-1810faf40dc381ac9a95dd4760d49b94"><div class="notion-column notion-block-1810faf40dc381c9ae33ce57db4552be" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h3 class="notion-h notion-h2 notion-block-1810faf40dc381fd88dfded256e7cea7" data-id="1810faf40dc381fd88dfded256e7cea7"><span><div id="1810faf40dc381fd88dfded256e7cea7" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381fd88dfded256e7cea7" 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-1810faf40dc381bcb2c8e3ff8dad7cc7">二级内容 1</div></div><div class="notion-spacer"></div><div class="notion-column notion-block-1810faf40dc381319176e247fa0a4347" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h3 class="notion-h notion-h2 notion-block-1810faf40dc38173892cc409422f803d" data-id="1810faf40dc38173892cc409422f803d"><span><div id="1810faf40dc38173892cc409422f803d" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38173892cc409422f803d" 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-1810faf40dc3815fa445e445f16234a9">二级内容2</div></div><div class="notion-spacer"></div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc3819cb11acce27967f4a4" data-id="1810faf40dc3819cb11acce27967f4a4"><span><div id="1810faf40dc3819cb11acce27967f4a4" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3819cb11acce27967f4a4" 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-1810faf40dc381b2a811ebb12db0b3bf"><div class="notion-column notion-block-1810faf40dc3810483e1cd7244fa5318" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h4 class="notion-h notion-h3 notion-block-1810faf40dc381cfbad3f0b44f9bb415" data-id="1810faf40dc381cfbad3f0b44f9bb415"><span><div id="1810faf40dc381cfbad3f0b44f9bb415" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381cfbad3f0b44f9bb415" 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-1810faf40dc381a5b0a6fbb555042aec">不同级别的heading代表不同级别的目录</div></div><div class="notion-spacer"></div><div class="notion-column notion-block-1810faf40dc381b8a7b6d1ec4b47fb53" style="width:calc((100% - (1 * min(32px, 4vw))) * 0.5)"><h4 class="notion-h notion-h3 notion-block-1810faf40dc3816db998cb94164b25ef" data-id="1810faf40dc3816db998cb94164b25ef"><span><div id="1810faf40dc3816db998cb94164b25ef" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3816db998cb94164b25ef" 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-1810faf40dc381c59e2efa5766177d89">高一级目录嵌套低一级目录</div></div><div class="notion-spacer"></div></div><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc3812a9aa0fa8ce44269e7" data-id="1810faf40dc3812a9aa0fa8ce44269e7"><span><div id="1810faf40dc3812a9aa0fa8ce44269e7" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3812a9aa0fa8ce44269e7" 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-1810faf40dc38141986ffc279477abfd"><li>事物的必然性</li></ul><ol start="1" class="notion-list notion-list-numbered notion-block-1810faf40dc381688864fbdfbeee8a85"><li>事物按规律变化，也有一种不可避免的性质．这种性质就叫做<b>必然性</b></li><ol class="notion-list notion-list-numbered notion-block-1810faf40dc381688864fbdfbeee8a85"><li>事物的必然性，是事物本身的性质（我们反对宿命论的是其认为这一切是受神明的支配，而不是反对事物发展中存在的不可避免的性质的事实）</li><ol class="notion-list notion-list-numbered notion-block-1810faf40dc381f6beb8ddab37247234"><li>第三级别列表</li><li>第三级别列表</li></ol><li>其决定于它自己本身发展的情况和周围的条件</li><ol class="notion-list notion-list-numbered notion-block-1810faf40dc3812f80c7f8179a37162a"><li>第三级别列表</li><ol class="notion-list notion-list-numbered notion-block-1810faf40dc381519cf8c8573d5b07e4"><li>第三级别列表</li></ol></ol></ol></ol><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc381859ee0f958af7fc334" data-id="1810faf40dc381859ee0f958af7fc334"><span><div id="1810faf40dc381859ee0f958af7fc334" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381859ee0f958af7fc334" 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-1810faf40dc381ffbcffdc2a1bec1a37">若要部署你的NotionNext项目，请复制该模板，并按照模板格式创建文章：</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-1810faf40dc3817b89d1c4b186a65c2d" 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=1810faf4-0dc3-817b-89d1-c4b186a65c2d&amp;t=1810faf4-0dc3-817b-89d1-c4b186a65c2d" 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=1810faf4-0dc3-817b-89d1-c4b186a65c2d" 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-1810faf40dc3810ba69dca0a3568354e" 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=1810faf4-0dc3-810b-a69d-ca0a3568354e&amp;t=1810faf4-0dc3-810b-a69d-ca0a3568354e" 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=1810faf4-0dc3-810b-a69d-ca0a3568354e&amp;t=1810faf4-0dc3-810b-a69d-ca0a3568354e" alt="Notion Blog - EN | Notion" loading="lazy" decoding="async"/></div></a></div><div class="notion-text notion-block-1810faf40dc381439ae1eff6e333ee78">Notion页面中，每篇文章都将有以下属性🤔：</div><table class="notion-simple-table notion-block-1810faf40dc3819ca22ae2de61f1288e"><tbody><tr class="notion-simple-table-row notion-block-1810faf40dc38189ab79e72d5b0ccfcb"><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-1810faf40dc381c5b9adeba33e840f65"><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-1810faf40dc381a2936bd65d3d64462a"><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-1810faf40dc38106ba76d3a2524b3868"><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-1810faf40dc3816693f3cca3468e07f5"><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-1810faf40dc3815ba99af35a510e4825"><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-1810faf40dc38103877dfde873cd8232"><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-1810faf40dc381beb244ebbe55bbaf50"><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-1810faf40dc381878faccfdb8ec7160b"><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-1810faf40dc381fb9572e35658a54027"><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-1810faf40dc381b78adfe31e7e759af3"><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-1810faf40dc38184a92dcfd9fd10e640" data-id="1810faf40dc38184a92dcfd9fd10e640"><span><div id="1810faf40dc38184a92dcfd9fd10e640" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38184a92dcfd9fd10e640" 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-1810faf40dc38181a2c5c58a0c7c5fd7">系统支持 Waline\Giscus\Valine\GitTalk\Utterance\Cusdis\Twikoo六种评论插件，并且可以同时开启，点击评论区的Tab来体验。</div><div class="notion-text notion-block-1810faf40dc381a7b29ef8bc0c117d28">按照以下教程可以开启响应的评论插件</div><div class="notion-row"><a target="_blank" rel="noopener noreferrer" class="notion-bookmark notion-block-1810faf40dc381438c3cd5a1a5884e0b" 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=1810faf4-0dc3-8143-8c3c-d5a1a5884e0b&amp;t=1810faf4-0dc3-8143-8c3c-d5a1a5884e0b" 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=1810faf4-0dc3-8143-8c3c-d5a1a5884e0b&amp;t=1810faf4-0dc3-8143-8c3c-d5a1a5884e0b" 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-1810faf40dc3813c91f8cc118bd68700" 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=1810faf4-0dc3-813c-91f8-cc118bd68700&amp;t=1810faf4-0dc3-813c-91f8-cc118bd68700" 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=1810faf4-0dc3-813c-91f8-cc118bd68700&amp;t=1810faf4-0dc3-813c-91f8-cc118bd68700" 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-1810faf40dc381338004e37b916ccf20" 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=1810faf4-0dc3-8133-8004-e37b916ccf20&amp;t=1810faf4-0dc3-8133-8004-e37b916ccf20" 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=1810faf4-0dc3-8133-8004-e37b916ccf20&amp;width=800" alt="NotionNext配置Valine/Waline评论插件 | TANGLY&#x27;s BLOG" loading="lazy" decoding="async"/></div></a></div><div class="notion-blank notion-block-1810faf40dc3811cbe3ae3e196704263"> </div><div class="notion-file notion-block-1810faf40dc38157af18fae65daf4c7f"><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%2F69d3aa8b-4702-4cbd-98b0-aa9575404840%2F20ecd1ff-e4de-4471-b86f-6f14ec891fc0%2F%25E6%25B5%258B%25E8%25AF%2595%25E5%25B5%258C%25E5%2585%25A5PDF.pdf?table=block&amp;id=1810faf4-0dc3-8157-af18-fae65daf4c7f"><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-1810faf40dc381929d62ce6bda23f12f" data-id="1810faf40dc381929d62ce6bda23f12f"><span><div id="1810faf40dc381929d62ce6bda23f12f" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381929d62ce6bda23f12f" 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-1810faf40dc381e5a8f6e3378f32ab34" data-id="1810faf40dc381e5a8f6e3378f32ab34"><span><div id="1810faf40dc381e5a8f6e3378f32ab34" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381e5a8f6e3378f32ab34" 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-1810faf40dc381bab222dae7f143baae">引用另一篇文章→<a class="notion-link" href="/1810faf40dc3818dacc7e14b8e037a83"><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[空白文章，标题注意不应该过长，否则影响显示效果，这是一个示范]]></title>
            <link>https://notion.9876566.xyz/article/example-10</link>
            <guid>https://notion.9876566.xyz/article/example-10</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-1810faf40dc381a48d9ec1ce077b7d3a"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><div class="notion-callout notion-gray_background_co notion-block-1810faf40dc381f19c38f6076dc2070d"><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-1810faf40dc381109d21ecfee4c91d89">可以说说你的故事：阻碍、努力、结果成果，意外与转折。</div></div></div><div class="notion-blank notion-block-1810faf40dc38186bd99de4ddbb16db8"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc38121aa26cac4a479bff6" data-id="1810faf40dc38121aa26cac4a479bff6"><span><div id="1810faf40dc38121aa26cac4a479bff6" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38121aa26cac4a479bff6" 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-1810faf40dc381d495f9e3ce75f0168a" data-id="1810faf40dc381d495f9e3ce75f0168a"><span><div id="1810faf40dc381d495f9e3ce75f0168a" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381d495f9e3ce75f0168a" 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-1810faf40dc381baa74bd0b57490ace3"><div>引用的话语</div></blockquote><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc38110a13dcfb35895d4f4" data-id="1810faf40dc38110a13dcfb35895d4f4"><span><div id="1810faf40dc38110a13dcfb35895d4f4" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38110a13dcfb35895d4f4" 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-1810faf40dc3810c8f72d071ece4bf67"><div>引用的话语</div></blockquote><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc3817c9433f2ca3f054207" data-id="1810faf40dc3817c9433f2ca3f054207"><span><div id="1810faf40dc3817c9433f2ca3f054207" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3817c9433f2ca3f054207" 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-1810faf40dc38134a1c8f71f881487b6">总结文章的内容</div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc3813891d0d5b64d7c33db" data-id="1810faf40dc3813891d0d5b64d7c33db"><span><div id="1810faf40dc3813891d0d5b64d7c33db" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3813891d0d5b64d7c33db" 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-1810faf40dc381ca8601e34ac41b7fc3"><li>一些引用</li></ul><ul class="notion-list notion-list-disc notion-block-1810faf40dc3815aa984c71ec9d20ecb"><li>引用文章</li></ul><div class="notion-blank notion-block-1810faf40dc3817b9adde71e64632d89"> </div><div class="notion-callout notion-gray_background_co notion-block-1810faf40dc38130bf10c401be8a42a8"><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>
            <link>https://notion.9876566.xyz/article/1810faf4-0dc3-8119-86f2-cfd88856d463</link>
            <guid>https://notion.9876566.xyz/article/1810faf4-0dc3-8119-86f2-cfd88856d463</guid>
            <pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
            <description><![CDATA[无slug\category\tag\tittle空白文章；此文章的路径为notion页面id]]></description>
            <content:encoded><![CDATA[<div id="notion-article" class="mx-auto overflow-hidden "><main class="notion light-mode notion-page notion-block-1810faf40dc3811986f2cfd88856d463"><div class="notion-viewport"></div><div class="notion-collection-page-properties"></div><div class="notion-callout notion-gray_background_co notion-block-1810faf40dc381dcb145e05f2a12a665"><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-1810faf40dc38157aa74f22dde500578">可以说说你的故事：阻碍、努力、结果成果，意外与转折。</div></div></div><div class="notion-blank notion-block-1810faf40dc381e2aeeaf82b45d19bcf"> </div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc381259b37dd98ca15ce3d" data-id="1810faf40dc381259b37dd98ca15ce3d"><span><div id="1810faf40dc381259b37dd98ca15ce3d" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc381259b37dd98ca15ce3d" 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-1810faf40dc3815e95ebf31a7c1246f7" data-id="1810faf40dc3815e95ebf31a7c1246f7"><span><div id="1810faf40dc3815e95ebf31a7c1246f7" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3815e95ebf31a7c1246f7" 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-1810faf40dc38152aabbf27b45560a1b"><div>引用的话语</div></blockquote><h3 class="notion-h notion-h2 notion-h-indent-1 notion-block-1810faf40dc38144a3c9c13593599f31" data-id="1810faf40dc38144a3c9c13593599f31"><span><div id="1810faf40dc38144a3c9c13593599f31" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc38144a3c9c13593599f31" 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-1810faf40dc3810aa1facaf522809fcb"><div>引用的话语</div></blockquote><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc3815ab413ec82f2e10ec1" data-id="1810faf40dc3815ab413ec82f2e10ec1"><span><div id="1810faf40dc3815ab413ec82f2e10ec1" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3815ab413ec82f2e10ec1" 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-1810faf40dc38160a71dee15a73589c6">总结文章的内容</div><h2 class="notion-h notion-h1 notion-h-indent-0 notion-block-1810faf40dc3814b8d40c7ad63fe29b5" data-id="1810faf40dc3814b8d40c7ad63fe29b5"><span><div id="1810faf40dc3814b8d40c7ad63fe29b5" class="notion-header-anchor"></div><a class="notion-hash-link" href="#1810faf40dc3814b8d40c7ad63fe29b5" 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-1810faf40dc381aaa206e4dcc440dcf7"><li>一些引用</li></ul><ul class="notion-list notion-list-disc notion-block-1810faf40dc381cea3c8eb4b506c5c1b"><li>引用文章</li></ul><div class="notion-blank notion-block-1810faf40dc381f79a0cf062e0b8fe6c"> </div><div class="notion-callout notion-gray_background_co notion-block-1810faf40dc38113ac9df1e2543002e1"><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>
    </channel>
</rss>