0、实现思路
自定义曲线状画笔
1.设置画笔
画笔选择这个形状,因为最终要改成灰度模式,画笔颜色随便
2、路径工具画曲线
用路径工具设计曲线,并勾画路径 

xuenhua’s 站点
vi pydata_sphinx_theme/theme/pydata_sphinx_theme/components/theme-version.html
<p class="theme-version">
备案许可证编号:<a href="http://beian.miit.gov.cn/">京ICP备000000号</a>
</p>
<p class="theme-version">
{% trans theme_version=theme_version|e %}Built with the <a href="https://pydata-sphinx-theme.readthedocs.io/en/stable/index.html">PyData Sphinx Theme</a> {{ theme_version }}.{% endtrans %}
</p>
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 31c32b2..dcfd863 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -179,7 +179,7 @@ const config = {
],
},
],
- copyright: `Copyright © ${new Date().getFullYear()} XXXXX. Built with Docusaurus.`,
+ copyright: `Copyright © ${new Date().getFullYear()} XXXXX. Built with Docusaurus.<br />备案许可证编号:<a target="_blank" rel="noopener noreferrer" href="http://beian.miit.gov.cn/">京ICP备00000000号</a>`,
},
prism: {
theme: prismThemes.github,
sphinx-tabs 复合页签MySt Admonitions不能正常显示。
::::{tabs}
:::{tab} attention
:::{attention}
attention
:::
:::
:::{tab} caution
:::{caution}
caution
:::
:::
::::
diff --git a/sphinx_tabs/static/tabs.js b/sphinx_tabs/static/tabs.js
index 48dc303..163ea57 100644
--- a/sphinx_tabs/static/tabs.js
+++ b/sphinx_tabs/static/tabs.js
@@ -89,6 +89,9 @@ function selectTab(tab) {
tab.setAttribute("aria-selected", true);
// Show the associated panel
+ document
+ .getElementById(tab.getAttribute("aria-controls"))
+ .parentNode.removeAttribute("hidden");
document
.getElementById(tab.getAttribute("aria-controls"))
.removeAttribute("hidden");
操作中遇到OpenPGP异常!
解决方法
经过代码排查发现CachingDataDecryptorFactory.java中的mOperatorHelper和mAeadHelper没有初始化,导致解密抛出OpenPGP异常。
Git提交的用户名和邮箱通过是通过git config自己设置的,Git 并不去验证用户名和邮箱,一般都会设置成自己的用户名和邮箱,但也存在随意设置的情况。这就意味着,任何人都可以以你的名义进行提交。那么如何确保你的提交的可信度,证明它来自真正的你,而不是别人呢?
我们可以使用GPG签名你的提交。
设置 > SSH/GPG 密钥 >管理 GPG 密钥,添加GPG公钥即可。如何创建GPG不再赘述。继续阅读“GPG签名提交Gitea”