0%

Markdown Memo II

šŸ“˜ Other magic usage that may need to be used in markdown.


1 Note

šŸ˜• Input

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

{% note primary %}
primary note
{% endnote %}

{% note success %}
success note
{% endnote %}

{% note info %}
info note
{% endnote %}

{% note warning %}
warning note
{% endnote %}

{% note danger %}
danger note
{% endnote %}

😯 Output

default note

primary note

success note

info note

warning note

danger note

2 Tabs

šŸ˜• Input

1
2
3
4
5
6
7
8
9
10
11
{% tabs tab,1 %} The name is tab, which defaults to the first tab. If it is -1, it will be hidden.
<!-- tab -->
This is tab 1.
<!-- endtab -->
<!-- tab -->
This is tab 2.
<!-- endtab -->
<!-- tab A -->
This is tab A, change the default name to A.
<!-- endtab -->
{% endtabs %}

😯 Output

This is tab 1.

This is tab 2.

This is tab A, change the default name to A.

3 Label

šŸ˜• Input

1
2
3
4
5
6
{% label default@default %}
{% label primary@primary %}
{% label success@success %}
{% label info@info %}
{% label warning@warning %}
{% label danger@danger %}

😯 Output

default primary success info warning danger
-------------Thanks for your reading-------------

Welcome to my other publishing channels