Using Notices

Using Notices functionality within this theme

浏览量 加载中...

The “Notices” shortcode enables you to call out pieces of information - sidebars, warnings, tips, etc.

To create a notice on a page, you can use the notice shortcode.
You use the notice shortcode, with the first parameter being one of note, info, tip, and warning. Then add a title for your note in quotes as the second parameter. The inner body of the note can be whatever markdown you want to create.

The following shortcode syntax within a markdown doc:

{{% notice note "Note" %}}
This is a standard "note" style.
{{% /notice %}}

will render as:

note

This is a standard “note” style.

The other three variants follow.

info

Here is the “info” style.

tip

Here is a “tip” variant of a notice.

warning

Here is the “warning” flavor of a notice.

Also note that the content of a notice can contain anything you could put on a normal page - as shown below:

tip

This is a notice that has a lot of various kinds of content in it.

  • Here is a bulleted list
  • With more than one bullet
    • And even more than one level

Code blocks are fine here, too….

public void SayHello()
{
    Console.WriteLine("Hello, world!");
}

tip

If you’re using VS Code for your editing, copy the .vscode\clarity.code-snippets file into a .vscode root folder on your repo. This will enable you to type note then <tab> then choose with up/down arrows which flavor notice you want, then <tab> again to provide a title, then <tab> to add your content!

To use the snippet, you need to first enable quickSuggestions for Markdown (one time only):

  1. Go to Preferences->Settings then search for quickSuggestions
  2. Follow the link to Edit in settings.json
  3. Toward the bottom of the file, paste in the following JSON:
"[markdown]":  {
    "editor.quickSuggestions": true
  }
  1. Close and save the settings.
采用 CC BY-NC-SA 4.0 许可协议
🚀 加载中...
Sean's blog
使用 Hugo 构建 | 主题 StackJimmy 设计