mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
new: Added about me page and fixed some bugs
This commit is contained in:
1
_blog/dst/about/index.html
Normal file
1
_blog/dst/about/index.html
Normal file
@@ -0,0 +1 @@
|
||||
<h2 id="About-me">About me</h2>
|
||||
30
_blog/dst/post/test.md.html
Normal file
30
_blog/dst/post/test.md.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!--more-->
|
||||
<h1 id="Heading-level-1">Heading level 1</h1>
|
||||
<h2 id="Heading-level-2">Heading level 2</h2>
|
||||
<h3 id="Heading-level-3">Heading level 3</h3>
|
||||
<h4 id="Heading-level-4">Heading level 4</h4>
|
||||
<h5 id="Heading-level-5">Heading level 5</h5>
|
||||
<h6 id="Heading-level-6">Heading level 6</h6>
|
||||
<p>I just love <strong>bold text</strong>.</p>
|
||||
<blockquote>
|
||||
<p>Dorothy followed her through many of the beautiful rooms in her castle.</p>
|
||||
</blockquote>
|
||||
<ol>
|
||||
<li>First item</li>
|
||||
<li>Second item</li>
|
||||
<li>Third item</li>
|
||||
<li>Fourth item</li>
|
||||
</ol>
|
||||
<ul>
|
||||
<li>First item</li>
|
||||
<li>Second item</li>
|
||||
<li>Third item</li>
|
||||
<li>Fourth item</li>
|
||||
</ul>
|
||||
<pre><code class="language-go highlight-chroma"><span class="highlight-line"><span class="highlight-cl"><span class="highlight-kd">func</span> <span class="highlight-nf">main</span><span class="highlight-p">()</span> <span class="highlight-p">{</span>
|
||||
</span></span><span class="highlight-line"><span class="highlight-cl"> <span class="highlight-nx">fmt</span><span class="highlight-p">.</span><span class="highlight-nf">Println</span><span class="highlight-p">(</span><span class="highlight-s">"Hello, World"</span><span class="highlight-p">)</span>
|
||||
</span></span><span class="highlight-line"><span class="highlight-cl"><span class="highlight-p">}</span>
|
||||
</span></span></code></pre>
|
||||
<hr />
|
||||
<p>This is a link: <a href="https://markdown.com.cn">Markdown link</a>。</p>
|
||||
<p><img src="https://markdown.com.cn/assets/img/philly-magic-garden.9c0b4415.jpg" alt="Image" title="Magic Gardens" /></p>
|
||||
2
_blog/src/about/index.md
Normal file
2
_blog/src/about/index.md
Normal file
@@ -0,0 +1,2 @@
|
||||
## About me
|
||||
|
||||
50
_blog/src/post/test.md
Normal file
50
_blog/src/post/test.md
Normal file
@@ -0,0 +1,50 @@
|
||||
---
|
||||
title: Example Markdown
|
||||
date: 2024-12-16 12:33:04
|
||||
tags: [Example, Markdown]
|
||||
categories:
|
||||
- Example
|
||||
cover: https://markdown.com.cn/assets/img/philly-magic-garden.9c0b4415.jpg
|
||||
---
|
||||
|
||||
<!--more-->
|
||||
|
||||
# Heading level 1
|
||||
|
||||
## Heading level 2
|
||||
|
||||
### Heading level 3
|
||||
|
||||
#### Heading level 4
|
||||
|
||||
##### Heading level 5
|
||||
|
||||
###### Heading level 6
|
||||
|
||||
I just love **bold text**.
|
||||
|
||||
> Dorothy followed her through many of the beautiful rooms in her castle.
|
||||
|
||||
1. First item
|
||||
2. Second item
|
||||
3. Third item
|
||||
4. Fourth item
|
||||
|
||||
- First item
|
||||
- Second item
|
||||
- Third item
|
||||
- Fourth item
|
||||
|
||||
```go
|
||||
func main() {
|
||||
fmt.Println("Hello, World")
|
||||
}
|
||||
```
|
||||
|
||||
***
|
||||
|
||||
This is a link: [Markdown link](https://markdown.com.cn)。
|
||||
|
||||

|
||||
|
||||
|
||||
Reference in New Issue
Block a user