引用块

源代码

[引用块]
1
2
<blockquote><p>content  </p>
<footer><strong>author</strong><cite>- source [link] [source_link_title]</cite></footer></blockquote>

content

author- source [link] [source_link_title]

源代码

[引用块]
1
2
3
4
5

>引用内容
>>引用内容
>>>yy内容

引用内容

引用内容

yy内容

分割线

源代码

[分割线]
1
2
3

---


代码块

源代码

[代码块]
1
2
3

<figure class="highlight plaintext"><figcaption><span>[title] [lang:language] [url] [link text]</span></figcaption><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><code class="hljs plaintext"> <br>code snippet <br></code></pre></td></tr></table></figure>

[title] [lang:language] [url] [link text]
1
2
  
code snippet

引用文章链接

源代码

[链接块]
1
2
3

<a href="/2023/10/09/hello-world/" title="Hello World">hello-world</a>

hello-world

选项卡

源代码

[选项卡]
1
2
3

<div class="tabs" id="标签"><ul class="nav-tabs"><li class="tab active"><button type="button" data-href="#标签-1">标签 1</button></li><li class="tab"><button type="button" data-href="#标签-2">标签 2</button></li><li class="tab"><button type="button" data-href="#标签-3">标签三</button></li></ul><div class="tab-contents"><div class="tab-item-content active" id="标签-1"><p><strong>选项卡 1</strong> </p><button type="button" class="tab-to-top" aria-label="scroll to top"><i class="fas fa-arrow-up"></i></button></div><div class="tab-item-content" id="标签-2"><p><strong>选项卡 2</strong></p><button type="button" class="tab-to-top" aria-label="scroll to top"><i class="fas fa-arrow-up"></i></button></div><div class="tab-item-content" id="标签-3"><p><strong>选项卡 3</strong> , 名字为 <code>TAB三</code></p><button type="button" class="tab-to-top" aria-label="scroll to top"><i class="fas fa-arrow-up"></i></button></div></div></div>

选项卡 1

选项卡 2

选项卡 3 , 名字为 TAB三

源代码

[选项卡]
1
2
3
4
5
6
7
8
9
10
11
12
13
14

<div class="gallery-group-main">

<figure class="gallery-group">
<img class="gallery-group-img no-lightbox" src='https://api.aqcoder.cntoday' alt="Group Image Gallery">
<figcaption>
<div class="gallery-group-name">壁纸</div>
<p>收藏的一些壁纸</p>
<a href='/myblog/Gallery/wallpaper/'></a>
</figcaption>
</figure>

</div>

提示块

源代码

[提示块]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

<div class="note default simple"><p>default 提示块</p>
</div>

<div class="note primary simple"><p>primary 提示块</p>
</div>

<div class="note success simple"><p>success 提示块</p>
</div>

<div class="note info simple"><p>info 提示块</p>
</div>

<div class="note warning simple"><p>warning 提示块</p>
</div>

<div class="note danger simple"><p>danger 提示块</p>
</div>

default 提示块

primary 提示块

success 提示块

info 提示块

warning 提示块

danger 提示块