Settings NexT config file note: style: simple icons: false light_bg_offset: 0
Usage {% note [class] [no-icon] [summary] %} Any content (support inline tags too). {% endnote %}
[class]
: Optional parameter. Supported values: default | primary | success | info | warning | danger.
[no-icon]
: Optional parameter. Disable icon in note.
[summary]
: Optional parameter. Optional summary of the note.
All parameters are optional.
Examples {% note %} #### Header (without define class style) {% endnote %}
(without define class style)
{% note default %} #### Default Header Welcome to [Hexo!](https://hexo.io) {% endnote %}
{% note primary %} #### Primary Header **Welcome** to [Hexo!](https://hexo.io) {% endnote %}
{% note info %} #### Info Header **Welcome** to [Hexo!](https://hexo.io) {% endnote %}
{% note success %} #### Success Header **Welcome** to [Hexo!](https://hexo.io) {% endnote %}
{% note warning %} #### Warning Header **Welcome** to [Hexo!](https://hexo.io) {% endnote %}
{% note danger %} #### Danger Header **Welcome** to [Hexo!](https://hexo.io) {% endnote %}
{% note info no-icon %} #### No icon note Note **without** icon: `note info no-icon` {% endnote %}
No icon note Note without icon: note info no-icon
{% note primary This is a summary %} #### Details and summary Note with summary: `note primary This is a summary` {% endnote %}
This is a summary
Details and summary Note with summary: note primary This is a summary
{% note info no-icon This is a summary %} #### Details and summary (No icon) Note with summary: `note info no-icon This is a summary` {% endnote %}
This is a summary
Details and summary (No icon) Note with summary: note info no-icon This is a summary
{% note success %} #### Codeblock in note ``` code block in note tag code block in note tag code block in note tag ``` {% endnote %}
Codeblock in note code block in note tag code block in note tag code block in note tag
{% note default %} #### Lists in note * ul * ul * ul * ul * ul 1. ol 2. ol 1. ol 2. ol 3. ol {% endnote %}
Lists in note
ol
ol
ol
ol
ol
#### Table in Note {% note default %} | 1 | 2 | | - | - | | 3 | 4 | | 5 | 6 | | 7 | 8 | {% endnote %}