<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Posts on My New Hugo Project</title>
    <link>https://hugosite-8xv.pages.dev/posts/</link>
    <description>Recent content in Posts on My New Hugo Project</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 29 May 2026 20:26:18 +0800</lastBuildDate>
    <atom:link href="https://hugosite-8xv.pages.dev/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>配置cloudflare_page</title>
      <link>https://hugosite-8xv.pages.dev/posts/%E9%85%8D%E7%BD%AEcloudflare_page/</link>
      <pubDate>Fri, 29 May 2026 20:26:18 +0800</pubDate>
      <guid>https://hugosite-8xv.pages.dev/posts/%E9%85%8D%E7%BD%AEcloudflare_page/</guid>
      <description>&lt;h3 id=&#34;安装&#34;&gt;安装&lt;/h3&gt;
&lt;p&gt;以这个页面 &lt;a href=&#34;https://gohugo.com.cn/getting-started/quick-start/&#34;&gt;https://gohugo.com.cn/getting-started/quick-start/&lt;/a&gt; 进行初步安装，但要注意，以下主题代码不要使用：&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;应该使用如下克隆主题的代码：&lt;/p&gt;
&lt;p&gt;克隆主题，并删除主题中的.git文件夹，使得主题与整个网站架构同一个仓库管理&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git clone https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
rm -rf themes/ananke/.git
# 如果在windows下，用以下代码：
Remove-Item -Recurse -Force .\themes\ananke\.git
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;数学公式问题&#34;&gt;数学公式问题&lt;/h3&gt;
&lt;h4 id=&#34;在根目录的文件夹layouts下创建partials在这个文件夹下创建mathhtml内容如下&#34;&gt;在根目录的文件夹layouts下创建partials，在这个文件夹下创建math.html,内容如下：&lt;/h4&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&amp;lt;script src=&amp;#34;https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js&amp;#34; id=&amp;#34;MathJax-script&amp;#34; async&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
  MathJax = {
    tex: {
      inlineMath: [[&amp;#39;\\(&amp;#39;, &amp;#39;\\)&amp;#39;], [&amp;#39;$&amp;#39;, &amp;#39;$&amp;#39;]],
      displayMath: [[&amp;#39;\\[&amp;#39;, &amp;#39;\\]&amp;#39;], [&amp;#39;$$&amp;#39;, &amp;#39;$$&amp;#39;]]
    }
  };
&amp;lt;/script&amp;gt;

&amp;lt;!-- &amp;lt;link rel=&amp;#34;stylesheet&amp;#34; href=&amp;#34;https://cdn.jsdelivr.net/npm/katex@0.16.25/dist/katex.min.css&amp;#34; integrity=&amp;#34;sha384-WcoG4HRXMzYzfCgiyfrySxx90XSl2rxY5mnVY5TwtWE6KLrArNKn0T/mOgNL0Mmi&amp;#34; crossorigin=&amp;#34;anonymous&amp;#34;&amp;gt;
&amp;lt;script defer src=&amp;#34;https://cdn.jsdelivr.net/npm/katex@0.16.25/dist/katex.min.js&amp;#34; integrity=&amp;#34;sha384-J+9dG2KMoiR9hqcFao0IBLwxt6zpcyN68IgwzsCSkbreXUjmNVRhPFTssqdSGjwQ&amp;#34; crossorigin=&amp;#34;anonymous&amp;#34;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script defer src=&amp;#34;https://cdn.jsdelivr.net/npm/katex@0.16.25/dist/contrib/auto-render.min.js&amp;#34; integrity=&amp;#34;sha384-hCXGrW6PitJEwbkoStFjeJxv+fSOOQKOPbJxSfM6G5sWZjAyWhXiTIIAmQqnlLlh&amp;#34; crossorigin=&amp;#34;anonymous&amp;#34; onload=&amp;#34;renderMathInElement(document.body);&amp;#34;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
  document.addEventListener(&amp;#34;DOMContentLoaded&amp;#34;, function() {
    renderMathInElement(document.body, {
      delimiters: [
        {left: &amp;#39;\\[&amp;#39;, right: &amp;#39;\\]&amp;#39;, display: true},
        {left: &amp;#39;$$&amp;#39;, right: &amp;#39;$$&amp;#39;, display: true},
        {left: &amp;#39;\\(&amp;#39;, right: &amp;#39;\\)&amp;#39;, display: false},
      ],
      throwOnError : false
    });
  });
&amp;lt;/script&amp;gt; --&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;上面分别展示了mathjax和katex，注意：mathjax用v3版本可以直接用美元符号来进行行内公式设置&lt;/p&gt;</description>
    </item>
    <item>
      <title>My First Post</title>
      <link>https://hugosite-8xv.pages.dev/posts/my-first-post/</link>
      <pubDate>Thu, 28 May 2026 11:13:12 +0800</pubDate>
      <guid>https://hugosite-8xv.pages.dev/posts/my-first-post/</guid>
      <description>&lt;h2 id=&#34;简介&#34;&gt;简介&lt;/h2&gt;
&lt;p&gt;这是 &lt;strong&gt;粗体&lt;/strong&gt; 文本，这是 &lt;em&gt;斜体&lt;/em&gt; 文本。&lt;/p&gt;
&lt;p&gt;访问 &lt;a href=&#34;https://gohugo.io&#34;&gt;Hugo&lt;/a&gt; 网站！&lt;/p&gt;
&lt;p&gt;This is an inline \(a^*=x-b^*\) equation.&lt;/p&gt;
&lt;p&gt;测试：
This is another inline $a^*=x-b^*$ equation.&lt;/p&gt;
&lt;p&gt;These are block equations:&lt;/p&gt;
\[a^*=x-b^*\]\[ a^*=x-b^* \]\[
a^*=x-b^*
\]&lt;p&gt;These are also block equations:&lt;/p&gt;
$$a^*=x-b^*$$$$ a^*=x-b^* $$$$
a^*=x-b^*
$$</description>
    </item>
  </channel>
</rss>
