Introduction

  • Markdown is a lightweight markup language that allows people to write plain text documents in an easy-to-read manner.

  • Markdown documents are written in .md or .markdown extensions. Documents written in Markdown can be exported to HTML, Word, Png, PDF, Epub, and many other formats.

  • Markdown also can be used to write e-books, such as Gitbook. Markdown is now widely used by many websites to help write files or to post messages on forums. Examples include GitHub, Reddit, Diaspora, Stack Exchange, OpenStreetMap, and SourceForge, etc,.


Syntax

Below I have provided the basic syntax of Markdown.

Markdown Cheat Sheet


Front-matter

The following writing method is only applicable to Butterfly theme, it may not work on other themes and may even report errors.

Page Metadata (En)
VariablesValuesOptionMeaningDefault
titleChrRequiredPage TitleNA
dateDateRequiredPage creation dateNA
typeChrRequiredTags, categories and links pages need to be configuredNA
updatedDateOptionalPage update dateNA
descriptionCHrOptionalPage DescriptionNA
keywordsChrOptionalPage KeywordsNA
commentsT/FOptionalShow page comments moduleT
top_imgPicOptionalPage top imageNA
mathjaxT/FOptionalShow mathjax (only required when setting per_page: False for mathjax)F
katexT/FOptionalShow katex (only required when setting per_page: False for katex)F
asideT/FOptionalShow sidebarT
aplayerT/FOptionalLoad aplayer’s js and css on the desired pageNA
highlight_shrinkT/FOptionalConfigure whether the code box is expanded (True/False)NA
Post Metadata (En)
VariablesValuesOptionMeaningDefault
titleChrRequiredOptionPost Title
dateDateRequiredPost Creation DateNA
updatedDateOptionalPost Update DateNA
tagsChrOptionalPost TagsNA
categoriesChrOptionalPost CategoriesNA
keywordsChrOptionalPost KeywordsNA
descriptionChrOptionalPost DescriptionNA
top_imgPicOptionalPost Top ImageNA
coverPicOptionalPost thumbnail (if not set top_img, the top of the Post page will display thumbnails, can be set to false/image address/leave blank)NA
commentsT/FOptionalShow Post comment sectionT
tocT/FOptionalShow Post TOC(The default is the enable configuration of toc in the settings)NA
toc_numberT/FOptionalShow toc_number(Default is the number configuration of toc in the settings)NA
toc_style_simpleT/FOptionalShow toc simple modeNA
copyrightT/FOptionalShow Post copyright module(The default is the enable configuration of post_copyright in the settings)NA
copyright_authorT/FOptionalPost author of the Post copyright moduleNA
copyright_author_hrefT/FOptionalPost author links in the Post copyright moduleNA
copyright_urlT/FOptionalLinks to Posts in the Post copyright moduleNA
copyright_infoT/FOptionalCopyright notice text for Post copyright moduleNA
mathjaxT/FOptionalShow mathjax (configuration is required when setting per_page: false for mathjax)F
katexT/FOptionalShow katex (only required when setting per_page: false for katex)F
aplayerOptionalLoad the aplayer js and css in the required page, please refer to the Post below the music configurationNA
highlight_shrinkT/FOptionalConfigure whether the code box is expanded (true/false) (default is the configuration of highlight_shrink in the settings)NA
asideT/FOptionalShow sidebarT
页面配置 (Cn)
写法解释
title【必需】页面标题
date【必需】页面创建日期
type【必需】标籤、分类和友情链接三个页面需要配置
updated【可选】页面更新日期
description【可选】页面描述
keywords【可选】页面关键字
comments【可选】显示页面评论模块(默认 true)
top_img【可选】页面顶部图片
mathjax【可选】显示mathjax(当设置mathjax的per_page: false时,才需要配置,默认 false)
katex【可选】显示katex(当设置katex的per_page: false时,才需要配置,默认 false)
aside【可选】显示侧边栏 (默认 true)
aplayer【可选】在需要的页面加载aplayer的js和css,请参考文章下面的音乐 配置
highlight_shrink【可选】配置代码框是否展开(true/false)(默认为设置中highlight_shrink的配置)
文章页配置 (Cn)
写法解释
title【必需】文章标题
date【必需】文章创建日期
updated【可选】文章更新日期
tags【可选】文章标籤
categories【可选】文章分类
keywords【可选】文章关键字
description【可选】文章描述
top_img【可选】文章顶部图片
cover【可选】文章缩略图(如果没有设置top_img,文章页顶部将显示缩略图,可设为false/图片地址/留空)
comments【可选】显示文章评论模块(默认 true)
toc【可选】显示文章TOC(默认为设置中toc的enable配置)
toc_number【可选】显示toc_number(默认为设置中toc的number配置)
toc_style_simple【可选】显示 toc 简洁模式
copyright【可选】显示文章版权模块(默认为设置中post_copyright的enable配置)
copyright_author【可选】文章版权模块的文章作者
copyright_author_href【可选】文章版权模块的文章作者链接
copyright_url【可选】文章版权模块的文章连结链接
copyright_info【可选】文章版权模块的版权声明文字
mathjax【可选】显示mathjax(当设置mathjax的per_page: false时,才需要配置,默认 false)
katex【可选】显示katex(当设置katex的per_page: false时,才需要配置,默认 false)
aplayer【可选】在需要的页面加载aplayer的js和css,请参考文章下面的音乐 配置
highlight_shrink【可选】配置代码框是否展开(true/false)(默认为设置中highlight_shrink的配置)
aside【可选】显示侧边栏 (默认 true)

Tag Plugins

The tag plugin is a unique feature of Hexo, and is not in standard Markdown format.

The following writing method is only applicable to Butterfly theme, it will not work on other themes and may even report errors. Please pay attention before using.

Although the plugin brings some additional features and UI enhancements to the theme, there are obvious limitations to the tabbed plugins, so please be aware of them when using them.

Note (Bootstrap Callout)

1
2
3
{% note [color] [icon] [style] %}
Any content (support inline tags too.io).
{% endnote %}
VariablesUsage
color[Optional] (default / blue / pink / red / purple / orange / green)
icon[Optional] Custom icons can be configured (only fontawesome icons are supported)
style[Optional](simple/modern/flat/disabled)

Built-in Icons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% note simple %}
default tag
{% endnote %}

{% note default simple %}
default tag
{% endnote %}

{% note primary simple %}
primary tag
{% endnote %}

{% note success simple %}
success tag
{% endnote %}

{% note info simple %}
info tag
{% endnote %}

{% note warning simple %}
warning tag
{% endnote %}

{% note danger simple %}
danger tag
{% endnote %}

default tag

default tag

primary tag

success tag

info tag

warning tag

danger tag

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% note modern %}
default tag
{% endnote %}

{% note default modern %}
default tag
{% endnote %}

{% note primary modern %}
primary tag
{% endnote %}

{% note success modern %}
success tag
{% endnote %}

{% note info modern %}
info tag
{% endnote %}

{% note warning modern %}
warning tag
{% endnote %}

{% note danger modern %}
danger tag
{% endnote %}

default tag

default tag

primary tag

success tag

info tag

warning tag

danger tag

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% note flat %}
default tag
{% endnote %}

{% note default flat %}
default tag
{% endnote %}

{% note primary flat %}
primary tag
{% endnote %}

{% note success flat %}
success tag
{% endnote %}

{% note info flat %}
info tag
{% endnote %}

{% note warning flat %}
warning tag
{% endnote %}

{% note danger flat %}
danger tag
{% endnote %}

default tag

default tag

primary tag

success tag

info tag

warning tag

danger tag

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% note disabled %}
default tag
{% endnote %}

{% note default disabled %}
default tag
{% endnote %}

{% note primary disabled %}
primary tag
{% endnote %}

{% note success disabled %}
success tag
{% endnote %}

{% note info disabled %}
info tag
{% endnote %}

{% note warning disabled %}
warning tag
{% endnote %}

{% note danger disabled %}
danger tag
{% endnote %}

default tag

default tag

primary tag

success tag

info tag

warning tag

danger tag

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% note no-icon %}
default tag
{% endnote %}

{% note default no-icon %}
default tag
{% endnote %}

{% note primary no-icon %}
primary tag
{% endnote %}

{% note success no-icon %}
success tag
{% endnote %}

{% note info no-icon %}
info tag
{% endnote %}

{% note warning no-icon %}
warning tag
{% endnote %}

{% note danger no-icon %}
danger tag
{% endnote %}

default tag

default tag

primary tag

success tag

info tag

warning tag

danger tag

Custom Icons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% note 'fab fa-cc-visa' simple %}
Accept Visa payment only
{% endnote %}
{% note red 'fas fa-bullhorn' simple %}
Here are some announcements...
{% endnote %}
{% note pink 'fas fa-car-crash' simple %}
Drive carefully, safety first!
{% endnote %}
{% note green 'fas fa-fan' simple%}
Windmill or pinwheel?
{% endnote %}
{% note orange 'fas fa-battery-half' simple %}
Low battery!
{% endnote %}
{% note purple 'far fa-hand-scissors' simple %}
Rock Paper Scissors?
{% endnote %}
{% note blue 'fab fa-internet-explorer' simple %}
Outdated browser: IE Explorer
{% endnote %}

Accept Visa payment only

Here are some announcements…

Drive carefully, safety first!

Windmill or pinwheel?

Low battery!

Rock Paper Scissors?

Outdated browser: IE Explorer

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% note 'fab fa-cc-visa' modern %}
Accept Visa payment only
{% endnote %}
{% note red 'fas fa-bullhorn' modern %}
Here are some announcements...
{% endnote %}
{% note pink 'fas fa-car-crash' modern %}
Drive carefully, safety first!
{% endnote %}
{% note green 'fas fa-fan' modern%}
Windmill or pinwheel?
{% endnote %}
{% note orange 'fas fa-battery-half' modern %}
Low battery!
{% endnote %}
{% note purple 'far fa-hand-scissors' modern %}
Rock Paper Scissors?
{% endnote %}
{% note blue 'fab fa-internet-explorer' modern %}
Outdated browser: IE Explorer
{% endnote %}

Accept Visa payment only

Here are some announcements…

Drive carefully, safety first!

Windmill or pinwheel?

Low battery!

Rock Paper Scissors?

Outdated browser: IE Explorer

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% note 'fab fa-cc-visa' flat %}
Accept Visa payment only
{% endnote %}
{% note red 'fas fa-bullhorn' flat %}
Here are some announcements...
{% endnote %}
{% note pink 'fas fa-car-crash' flat %}
Drive carefully, safety first!
{% endnote %}
{% note green 'fas fa-fan' flat%}
Windmill or pinwheel?
{% endnote %}
{% note orange 'fas fa-battery-half' flat %}
Low battery!
{% endnote %}
{% note purple 'far fa-hand-scissors' flat %}
Rock Paper Scissors?
{% endnote %}
{% note blue 'fab fa-internet-explorer' flat %}
Outdated browser: IE Explorer
{% endnote %}

Accept Visa payment only

Here are some announcements…

Drive carefully, safety first!

Windmill or pinwheel?

Low battery!

Rock Paper Scissors?

Outdated browser: IE Explorer

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% note 'fab fa-cc-visa' disabled  %}
Accept Visa payment only
{% endnote %}
{% note red 'fas fa-bullhorn' disabled %}
Here are some announcements...
{% endnote %}
{% note pink 'fas fa-car-crash' disabled %}
Drive carefully, safety first!
{% endnote %}
{% note green 'fas fa-fan' disabled %}
Windmill or pinwheel?
{% endnote %}
{% note orange 'fas fa-battery-half' disabled %}
Low battery!
{% endnote %}
{% note purple 'far fa-hand-scissors' disabled %}
Rock Paper Scissors?
{% endnote %}
{% note blue 'fab fa-internet-explorer' disabled %}
Outdated browser: IE Explorer
{% endnote %}

Accept Visa payment only

Here are some announcements…

Drive carefully, safety first!

Windmill or pinwheel?

Low battery!

Rock Paper Scissors?

Outdated browser: IE Explorer

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% note no-icon %}
Accept Visa payment only
{% endnote %}
{% note red 'no-icon %}
Here are some announcements...
{% endnote %}
{% note pink no-icon %}
Drive carefully, safety first!
{% endnote %}
{% note green disabled %}
Windmill or pinwheel?
{% endnote %}
{% note orange no-icon %}
Low battery!
{% endnote %}
{% note purple no-icon %}
Rock Paper Scissors?
{% endnote %}
{% note blue no-icon %}
Outdated browser: IE Explorer
{% endnote %}

Accept Visa payment only

Here are some announcements…

Drive carefully, safety first!

Windmill or pinwheel?

Low battery!

Rock Paper Scissors?

Outdated browser: IE Explorer

Hide Content

content:Text Content
display:Text displayed by the button (optional)
bg:Background color of the button (optional)
color:Color of button text (optional)

inline adds a button to the text to hide the content, text only

1
{% hideInline content,display,bg,color %}
content:Text Content
displayText displayed by the button (optional)
bgBackground color of the button (optional)
colorColor of button text (optional)

Demo

1
2
3
Which letter of the alphabet is the coolest? {% hideInline X!,See answer,#FF7242,#fff %}

There is a man standing by the door? {% hideInline Here is Johnny! %}

Which letter of the alphabet is the coolest? X!

There is a man standing by the door? Here is Johnny!

block, creates a separate block to hide content, you can hide a lot of content, including images, code blocks, etc.

1
2
3
{% hideBlock display,bg,color %}
content
{% endhideBlock %}

Demo

1
2
3
4
See answer
{% hideBlock See answer %}
How can there be an answer? You fool.
{% endhideBlock %}
See answer

How can there be an answer? You fool.

1
2
3
{% hideToggle display,bg,color %}
content
{% endhideToggle %}

Demo

1
2
3
4
5
6
7
8
{% hideToggle Butterfly Theme Installation %}
In the root directory of your blog folder, do
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly

If you want to install a newer dev branch, you can do

git clone -b dev https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly
{% endhideToggle %}
Butterfly Theme Installation

In the root directory of your blog folder, do
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly

If you want to install a newer dev branch, you can do
git clone -b dev https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly

Buttons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% btn [url],[text],[icon],[color] [style] [layout] [position] [size] %}

[url] : Links
[text] : Button text
[icon] : [Optional] Icon
[color] : [Optional] Button background color (when default style is selected)
Button fonts and border colors (when outline is selected),
default/blue/pink/red/purple/orange/green
[style] : [Optional] Button Style Default Solid
outline/leave blank
[layout] : [Optional] Button layout Default to line
block/leave blank
[position] : [Optional] Button position, only works if layout is set to block. Default:left,
center/right/leaveblank
[size] : [Optional] Button size
larger/leave blank

Demo

1
2
3
4
5
6
7
8
This is my website, click the button {% btn 'https://singsongaftermath.com/',Click here %}
This is my website, click the button {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right %}
This is my website, click the button {% btn 'https://singsongaftermath.com/',Click here,,outline %}
This is my website, click the button {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline %}
This is my website, click the button {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,block %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,block center larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,block right outline larger %}
  1. This is my website, click the button Click here
  2. This is my website, click the button Click here
  3. This is my website, click the button Click here
  4. This is my website, click the button Click here
  5. This is my website, click the button Click here
  6. Click here
  7. Click here
  8. Click here

Buttons with colors

1
2
3
4
5
6
7
1. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,larger %}
2. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,blue larger %}
3. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,pink larger %}
4. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,red larger %}
5. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,purple larger %}
6. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,orange larger %}
7. {% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,green larger %}
  1. Click here
  2. Click here
  3. Click here
  4. Click here
  5. Click here
  6. Click here
  7. Click here

Buttons’ different alignment

1
2
3
4
5
6
7
8
9
<div class="btn-center">
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline blue larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline pink larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline red larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline purple larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline orange larger %}
{% btn 'https://singsongaftermath.com/',Click here,far fa-hand-point-right,outline green larger %}
</div>

Tabs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% tabs Unique name, [index] %}

<!-- tab [Tab caption] [@icon] -->

Any content (support inline tags too).

<!-- endtab -->

{% endtabs %}

Unique name : Unique name of tabs block tag without comma. Will be used in #id's as prefix for each tab with their index numbers.
If there are whitespace in name, for generate #id all whitespace will replaced by dashes. Only for current url of post/page must be unique!

[index] : Index number of active tab.
If not specified, first tab (1) will be selected.
If index is -1, no tab will be selected. It's will be something like spoiler.
Optional parameter.
[Tab caption] : Caption of current tab.
If not caption specified, unique name with tab index suffix will be used as caption of tab.
If not caption specified, but specified icon, caption will empty.
Optional parameter.
[@icon] : FontAwesome icon name (full-name, look like 'fas fa-font')
Can be specified with or without space; e.g. 'Tab caption @icon' similar to 'Tab caption@icon'.
Optional parameter.

Method 1

Demo with method 1: Default configuration

1
2
3
4
5
6
7
8
9
10
11
12
13
{% tabs test1 %}
<!-- tab -->
**This is Tab 1.**
<!-- endtab -->

<!-- tab -->
**This is Tab 2.**
<!-- endtab -->

<!-- tab -->
**This is Tab 3.**
<!-- endtab -->
{% endtabs %}

This is Tab 1.

This is Tab 2.

This is Tab 3.

Method 2

Demo with method 2: Pre-configed tabs

1
2
3
4
5
6
7
8
9
10
11
12
13
{% tabs test2, 3 %}
<!-- tab -->
**This is Tab 1.**
<!-- endtab -->

<!-- tab -->
**This is Tab 2.**
<!-- endtab -->

<!-- tab -->
**This is Tab 3.**
<!-- endtab -->
{% endtabs %}

This is Tab 1.

This is Tab 2.

This is Tab 3.

Method 3

Demo with method 3: Without pre-configed tabs

1
2
3
4
5
6
7
8
9
10
11
12
13
{% tabs test3, -1 %}
<!-- tab -->
**This is Tab 1.**
<!-- endtab -->

<!-- tab -->
**This is Tab 2.**
<!-- endtab -->

<!-- tab -->
**This is Tab 3.**
<!-- endtab -->
{% endtabs %}

This is Tab 1.

This is Tab 2.

This is Tab 3.

Method 4

Demo with method 4: Custom tab name + only icon + icon and Tab name

1
2
3
4
5
6
7
8
9
10
11
12
13
{% tabs test4 %}
<!-- tab singsongaftermath -->
**tab named singsongaftermath**
<!-- endtab -->

<!-- tab @fab fa-apple-pay -->
**tab with only icon no name**
<!-- endtab -->

<!-- tab Bomb@fas fa-bomb -->
**tab with icon+name**
<!-- endtab -->
{% endtabs %}

tab named singsongaftermath

tab with only icon no name

tab with icon+name

Text Highlight

1
{% label text color %}
VariablesUsage
texttext
color[Optional] Background color, default:default/blue/pink/red/purple/orange/green

Demo

1
2
臣亮言:{% label 先帝 %}創業未半,而{% label 中道崩殂 blue %}。今天下三分,{% label 益州疲敝 pink %},此誠{% label 危急存亡之秋 red %}也!然侍衞之臣,不懈於內;{% label 忠志之士 purple %},忘身於外者,蓋追先帝之殊遇,欲報之於陛下也。誠宜開張聖聽,以光先帝遺德,恢弘志士之氣;不宜妄自菲薄,引喻失義,以塞忠諫之路也。
宮中、府中,俱為一體;陟罰臧否,不宜異同。若有{% label 作奸 orange %}、{% label 犯科 green %},及為忠善者,宜付有司,論其刑賞,以昭陛下平明之治;不宜偏私,使內外異法也。

臣亮言:先帝 創業未半,而中道崩殂 。今天下三分,益州疲敝 ,此誠危急存亡之秋 也!然侍衞之臣,不懈於內;忠志之士 ,忘身於外者,蓋追先帝之殊遇,欲報之於陛下也。誠宜開張聖聽,以光先帝遺德,恢弘志士之氣;不宜妄自菲薄,引喻失義,以塞忠諫之路也。
宮中、府中,俱為一體;陟罰臧否,不宜異同。若有作奸犯科 ,及為忠善者,宜付有司,論其刑賞,以昭陛下平明之治;不宜偏私,使內外異法也。

Timeline

1
2
3
4
5
6
7
8
{% timeline title,color %}
<!-- timeline title -->
xxxxx
<!-- endtimeline -->
<!-- timeline title -->
xxxxx
<!-- endtimeline -->
{% endtimeline %}
VariablesUsage
titleTitle/Timeline
colortimeline color, default: (blank) / blue / pink / red / purple / orange / green

Demo

1
2
3
4
5
{% timeline 2022 %}
<!-- timeline 01-02 -->
This is a test page
<!-- endtimeline -->
{% endtimeline %}

2022

01-02

This is a test page

Inline Image

1
2
3
4
{% inlineImg [src] [height] %}

[src] : Image link
[height] : Image height [optional]
1
2
3
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/index2.jpg)

<p style='text-align: right;'> Cruising at SingSongAfterMath.com {% inlineImg https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/anchor.png 14px %}</p>

Cruising at SingSongAfterMath.com

1
2
3
<div class="gallery-group-main">
{% galleryGroup name description link img-url %}
</div>
  • name:gallery name
  • description: description of the gallery
  • link: link to the address of the corresponding album
  • img-url: the address of the cover of the gallery

Demo

1
2
3
4
<div class="gallery-group-main">
{% galleryGroup 'Clouds' 'Clouds Collection' 'life/Gallery/Clouds/' https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/Wallpaper.jpg %}
{% galleryGroup 'Photography' 'Photography Collection' 'life/Gallery/Photography' https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/Photography.jpg %}
</div>
1
2
3
{% gallery %}
![](image links)
{% endgallery %}

Demo

1
2
3
4
5
6
7
8
{% gallery %}
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/Random/Covid.png)
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/Photography/Room.jpg)
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/Photography/Sawtooth.png)
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/EveCat.gif)
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/EveCat3.gif)
![](https://raw.githubusercontent.com/Sang-Buster/Picgo-Github/main/img/Gallery/EveCat6.gif)
{% endgallery %}