Theme Documentation - Extended Shortcodes
DoIt theme provides multiple shortcodes on top of built-in ones in Hugo.
1 style
style
shortcode.style
is a shortcode to insert custom style in your post.
The style
shortcode has two positional parameters.
The first one is the custom style content,
which supports nesting syntax in SASS
and &
referring to this parent HTML element.
And the second one is the tag name of the HTML element wrapping the content you want to change the style, and whose default value is div
.
Example style
input:
|
|
The rendered output looks like this:
2 link
link
shortcode is an alternative to Markdown link syntax. link
shortcode can provide some other features and can be used in code blocks.
The complete usage of local resource references is supported.
The link
shortcode has the following named parameters:
-
href [required] (first positional parameter)
Destination of the link.
-
content [optional] (second positional parameter)
Content of the link, the default value is the value of href parameter.
Markdown or HTML format is supported.
-
title [optional] (third positional parameter)
title
attribute of the HTMLa
tag, which will be shown when hovering on the link. -
class [optional]
class
attribute of the HTMLa
tag. -
rel [optional]
Additional
rel
attributes of the HTMLa
tag.
Example link
input:
|
|
The rendered output looks like this:
Example link
input with a title:
|
|
The rendered output looks like this (hover over the link, there should be a tooltip):
Upstage3 image
image
shortcode is an alternative to figure
shortcode. image
shortcode can take full advantage of the dependent library lightgallery.js.
The complete usage of local resource references is supported.
The image
shortcode has the following named parameters:
-
src [required] (first positional parameter)
URL of the image to be displayed.
-
alt [optional] (second positional parameter)
Alternate text for the image if the image cannot be displayed, the default value is the value of the src parameter.
Markdown or HTML format is supported.
-
caption [optional] (third positional parameter)
Image caption.
Markdown or HTML format is supported.
-
title [optional]
Image title that will be shown when hovering on the image.
-
class [optional]
class
attribute of the HTMLfigure
tag. -
src_s [optional]
URL of the image thumbnail, used for lightgallery, the default value is the value of the src parameter.
-
src_l [optional]
URL of the HD image, used for lightgallery, the default value is the value of the src parameter.
-
height [optional]
height
attribute of the image. -
width [optional]
width
attribute of the image. -
linked [optional]
Whether the image needs to be hyperlinked, the default value is
true
. -
rel [optional]
Additional
rel
attributes of the HTMLa
tag, if linked parameter is set totrue
.
Example image
input:
|
|
The rendered output looks like this:
4 admonition
The admonition
shortcode supports 12 types of banners to help you put a notice on your page.
Markdown or HTML format in the content is supported.
The admonition
shortcode has the following named parameters:
-
type [optional] (first positional parameter)
Type of the
admonition
banner, the default value isnote
. -
title [optional] (second positional parameter)
Title of the
admonition
banner, the default value is the value of the type parameter. -
open [optional] (third positional parameter)
Whether the content will be expandable by default, the default value is
true
.
Example admonition
input:
|
|
The rendered output looks like this:
5 mermaid
mermaid is a library helping you to generate diagrams and flowcharts from text, in a similar manner as Markdown.
Just insert your mermaid code in the mermaid
shortcode and that’s it.
5.1 Flowchart
Example flowchart mermaid
input:
|
|
The rendered output looks like this:
5.2 Sequence Diagram
Example sequence diagram mermaid
input:
|
|
The rendered output looks like this:
5.3 GANTT
Example GANTT mermaid
input:
|
|
The rendered output looks like this:
5.4 Class Diagram
Example class diagram mermaid
input:
|
|
The rendered output looks like this:
5.5 State Diagram
Example state diagram mermaid
input:
|
|
The rendered output looks like this:
5.6 Git Graph
Example git graph mermaid
input:
|
|
The rendered output looks like this:
5.7 Pie
Example pie mermaid
input:
|
|
The rendered output looks like this:
6 echarts
ECharts is a library helping you to generate interactive data visualization.
The basic chart types ECharts supports include line series, bar series, scatter series, pie charts, candle-stick series, boxplot series for statistics, map series, heatmap series, lines series for directional information, graph series for relationships, treemap series, sunburst series, parallel series for multi-dimensional data, funnel series, gauge series. And it’s extremely easy to create a combinition of them with ECharts.
Just insert your ECharts option in JSON
/YAML
/TOML
format in the echarts
shortcode and that’s it.
Example echarts
input in JSON
format:
|
|
The same in YAML
format:
|
|
The same in TOML
format:
|
|
The rendered output looks like this:
The echarts
shortcode has also the following named parameters:
-
width [optional] (first positional parameter)
-
height [optional] (second positional parameter)
7 mapbox
Mapbox GL JS is a JavaScript library that uses WebGL to render interactive maps from vector tiles and Mapbox styles.
The mapbox
shortcode has the following named parameters to use Mapbox GL JS:
-
lng [required] (first positional parameter)
Longitude of the initial centerpoint of the map, measured in degrees.
-
lat [required] (second positional parameter)
Latitude of the initial centerpoint of the map, measured in degrees.
-
zoom [optional] (third positional parameter)
The initial zoom level of the map, the default value is
10
. -
marked [optional] (fourth positional parameter)
Whether to add a marker at the initial centerpoint of the map, the default value is
true
. -
light-style [optional] (fifth positional parameter)
Style for the light theme, default value is the value set in the front matter or the site configuration.
-
dark-style [optional] (sixth positional parameter)
Style for the dark theme, default value is the value set in the front matter or the site configuration.
-
navigation [optional]
Whether to add NavigationControl, default value is the value set in the front matter or the site configuration.
-
geolocate [optional]
Whether to add GeolocateControl, default value is the value set in the front matter or the site configuration.
-
scale [optional]
Whether to add ScaleControl, default value is the value set in the front matter or the site configuration.
-
fullscreen [optional]
Whether to add FullscreenControl, default value is the value set in the front matter or the site configuration.
-
width [optional]
Width of the map, the default value is
100%
. -
height [optional]
Height of the map, the default value is
20rem
.
Example simple mapbox
input:
|
|
The rendered output looks like this:
Example mapbox
input with the custom style:
|
|
The rendered output looks like this:
8 music
The music
shortcode embeds a responsive music player based on APlayer and MetingJS.
There are three ways to use the music
shortcode.
8.1 Custom Music URL
The complete usage of local resource references is supported.
The music
shortcode has the following named parameters by custom music URL:
-
server [required]
URL of the custom music.
-
name [optional]
Name of the custom music.
-
artist [optional]
Artist of the custom music.
-
cover [required]
URL of the custom music cover.
Example music
input by custom music URL:
|
|
The rendered output looks like this:
8.2 Music Platform URL Automatic Identification
The music
shortcode has one named parameter by music platform URL automatic identification:
-
auto [required] (first positional parameter)
URL of the music platform URL for automatic identification, which supports
netease
,tencent
andxiami
music platforms.
Example music
input by music platform URL automatic identification:
|
|
The rendered output looks like this:
8.3 Custom Server, Type and ID
The music
shortcode has the following named parameters by custom music platform:
-
server [required] (first positional parameter)
[
netease
,tencent
,kugou
,xiami
,baidu
]Music platform.
-
type [required] (second positional parameter)
[
song
,playlist
,album
,search
,artist
]Type of the music.
-
id [required] (third positional parameter)
Song ID, or playlist ID, or album ID, or search keyword, or artist ID.
Example music
input by custom music platform:
|
|
The rendered output looks like this:
8.4 Other Parameters
The music
shortcode has other named parameters applying to the above three ways:
-
theme [optional]
the Main colour of the music player, the default value is
#448aff
. -
fixed [optional]
Whether to enable fixed mode, the default value is
false
. -
mini [optional]
Whether to enable mini mode, the default value is
false
. -
autoplay [optional]
Whether to autoplay music, the default value is
false
. -
volume [optional]
Default volume when the player is first opened, which will be remembered in the browser, the default value is
0.7
. -
mutex [optional]
Whether to pause other players when this player starts playing, the default value is
true
.
The music
shortcode has the following named parameters only applying to the type of music list:
-
loop [optional]
[
all
,one
,none
]Loop mode of the music list, the default value is
none
. -
order [optional]
[
list
,random
]Play order of the music list, the default value is
list
. -
list-folded [optional]
Whether the music list should be folded at first, the default value is
false
. -
list-max-height [optional]
Max height of the music list, the default value is
340px
.
9 aplayer and audio
If you need more advanced controls (custom playlist, mini mode, custom audio type…) over the music player, you can use the aplayer
shortcode along with the audio
shortcode to reach full power of APlayer.js.
The aplayer
shortcode is used to create an APlayer
instance, and the audio
shortcode is used to store data about each music file. Please refer to APlayer.js documentation for all options.
Example aplayer
and audio
input:
|
|
Example aplayer
and audio
output:
Note that these shortcodes cannot be used separately and only named parameters are supported.
If you place the LRC inside the audio
shortcode, it is passed to the APlayer as a JS string, so the lrcType
needs to be set to 1. If you set the link to the LRC file through the lrc
parameter, it will be passed as an LRC file, so the lrcType
needs to be set to 3.
10 bilibili
The bilibili
shortcode embeds a responsive video player for bilibili videos.
When the video only has one part, only the BV id
of the video is required, e.g.:
|
|
Example bilibili
input:
|
|
The rendered output looks like this:
When the video has multiple parts, in addition to the BV id
of the video,
p
is also required, whose default value is 1
, e.g.:
|
|
Example bilibili
input with p
:
|
|
The rendered output looks like this:
11 typeit
The typeit
shortcode provides typing animation based on TypeIt.
Just insert your content in the typeit
shortcode and that’s it.
11.1 Simple Content
Simple content is allowed in Markdown
format and without rich block content such as images and more…
Example typeit
input:
|
|
The rendered output looks like this:
Alternatively, you can use custom HTML tags.
Example typeit
input with h4
tag:
|
|
The rendered output looks like this:
11.2 Code Content
Code content is allowed and will be highlighted by the named parameter code
for the type of code language.
Example typeit
input with code
:
|
|
The rendered output looks like this:
11.3 Group Content
All typing animations start at the same time by default.
But sometimes you may want to start a set of typeit
contents in order.
A set of typeit
contents with the same value of named parameter group
will start typing animation in sequence.
Example typeit
input with group
:
|
|
The rendered output looks like this:
12 script
script
is a shortcode to insert custom Javascript in your post.
Example script
input:
|
|
You can see the output in the console of the developer tool.
13 friend
friend
is a shortcode to insert a friend link to your friend’s site in your post.
The friend
shortcode has the following named parameters:
-
name [required] (first positional parameter)
Your friend site’s name.
-
url [required] (second positional parameter)
The link to your friend site.
-
avatar [required] (third positional parameter)
Your friend site’s avatar.
-
bio [required] (fourth positional parameter)
A short bio of your friend site.
Example friend
input:
|
|
The rendered output looks like this:
This is PCloud~💤
14 showcase
showcase
is a shortcode to insert a showcase of your project in the post.
The showcase
shortcode has the following named parameters:
-
title [required] (first positional parameter)
The title of your showcase.
-
summary [required] (second positional parameter)
A brief introduction to your project.
-
image [required] (third positional parameter)
The url to the preview image.
-
link [required] (fourth positional parameter)
The url to your project page.
-
column [optional] (fifth positional parameter)
This parameter defines how many showcases are in each row. The default value is 2, which means there will have two showcases in each row. You can change it to 1, 2 or 3. It’s important to note that when a user visits the website on a small screen, the number of the column may be auto-adjusted to provide the best experience.
Example showcase
input:
|
|
The rendered output looks like this:
Theme Documentation - Basics
Discover what the Hugo - DoIt theme is all about and the core-concepts behind it.
Read more...15 math
math
is a shortcode to insert a math expression in your post. This can prevent Goldmark from parsing math expressions into HTML. You no longer need to escape special characters inside this shortcode.
Example math
input:
|
|
The rendered output looks like this:
$\|\boldsymbol{x}\|_{0}=\sqrt[0]{\sum_{i} x_{i}^{0}}$ $$\|\boldsymbol{x}\|_{0}=\sqrt[0]{\sum_{i} x_{i}^{0}}$$