Skip to content

Commit fbd7d68

Browse files
committed
Site updated: 2025-06-27 14:04:34
1 parent 2cf5c0a commit fbd7d68

File tree

17 files changed

+3261
-61
lines changed

17 files changed

+3261
-61
lines changed

2025/06/03/hello-world/index.html

Lines changed: 57 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,16 +194,12 @@ <h1 class="post-title" itemprop="name headline">
194194

195195
<p>Welcome to <a target="_blank" rel="noopener" href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a target="_blank" rel="noopener" href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a target="_blank" rel="noopener" href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a target="_blank" rel="noopener" href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p>
196196
<h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">&quot;My New Post&quot;</span></span><br></pre></td></tr></table></figure>
197-
198197
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/writing.html">Writing</a></p>
199198
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure>
200-
201199
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/server.html">Server</a></p>
202200
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure>
203-
204201
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/generating.html">Generating</a></p>
205202
<h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure>
206-
207203
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>
208204

209205
</div>
@@ -296,7 +292,7 @@ <h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerl
296292
<div class="site-state-item site-state-posts">
297293
<a href="/LLM-Blog/archives/">
298294

299-
<span class="site-state-item-count">3</span>
295+
<span class="site-state-item-count">4</span>
300296
<span class="site-state-item-name">日志</span>
301297
</a>
302298
</div>
@@ -307,7 +303,7 @@ <h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerl
307303
<span class="site-state-item-name">分类</span></a>
308304
</div>
309305
<div class="site-state-item site-state-tags">
310-
<span class="site-state-item-count">3</span>
306+
<span class="site-state-item-count">5</span>
311307
<span class="site-state-item-name">标签</span>
312308
</div>
313309
</nav>
@@ -393,6 +389,61 @@ <h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerl
393389

394390

395391

392+
393+
394+
395+
396+
<script>
397+
if (typeof MathJax === 'undefined') {
398+
window.MathJax = {
399+
loader: {
400+
source: {
401+
'[tex]/amsCd': '[tex]/amscd',
402+
'[tex]/AMScd': '[tex]/amscd'
403+
}
404+
},
405+
tex: {
406+
inlineMath: {'[+]': [['$', '$']]},
407+
tags: 'ams'
408+
},
409+
options: {
410+
renderActions: {
411+
findScript: [10, doc => {
412+
document.querySelectorAll('script[type^="math/tex"]').forEach(node => {
413+
const display = !!node.type.match(/; *mode=display/);
414+
const math = new doc.options.MathItem(node.textContent, doc.inputJax[0], display);
415+
const text = document.createTextNode('');
416+
node.parentNode.replaceChild(text, node);
417+
math.start = {node: text, delim: '', n: 0};
418+
math.end = {node: text, delim: '', n: 0};
419+
doc.math.push(math);
420+
});
421+
}, '', false],
422+
insertedScript: [200, () => {
423+
document.querySelectorAll('mjx-container').forEach(node => {
424+
let target = node.parentNode;
425+
if (target.nodeName.toLowerCase() === 'li') {
426+
target.parentNode.classList.add('has-jax');
427+
}
428+
});
429+
}, '', false]
430+
}
431+
}
432+
};
433+
(function () {
434+
var script = document.createElement('script');
435+
script.src = '//cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js';
436+
script.defer = true;
437+
document.head.appendChild(script);
438+
})();
439+
} else {
440+
MathJax.startup.document.state(0);
441+
MathJax.texReset();
442+
MathJax.typeset();
443+
}
444+
</script>
445+
446+
396447

397448

398449

0 commit comments

Comments
 (0)