hugo-theme-relearn/exampleSite/content/shortcodes/notice.en.md

377 lines
11 KiB
Markdown
Raw Normal View History

+++
2024-10-12 17:28:28 +00:00
categories = ["howto", "reference"]
description = "Disclaimers to help you structure your page"
options = ["boxStyle"]
title = "Notice"
+++
2017-08-20 15:10:29 +00:00
2022-05-25 21:39:19 +00:00
The `notice` shortcode shows various types of disclaimers with adjustable color, title and icon to help you structure your page.
2022-05-23 22:37:03 +00:00
{{% notice style="primary" title="There may be pirates" icon="skull-crossbones" %}}
It is all about the boxes.
{{% /notice %}}
2017-08-20 15:10:29 +00:00
2021-07-16 20:04:22 +00:00
## Usage
2017-08-20 15:10:29 +00:00
{{< tabs groupid="shortcode-parameter">}}
{{% tab title="callout" %}}
````md
2024-09-03 21:02:11 +00:00
> [!primary] There may be pirates
> It is all about the boxes.
````
{{% /tab %}}
{{% tab title="shortcode" %}}
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="primary" title="There may be pirates" icon="skull-crossbones" */%}}
It is all about the boxes.
{{%/* /notice */%}}
````
{{% /tab %}}
{{% tab title="shortcode (positional)" %}}
2022-05-23 22:37:03 +00:00
````go
2022-05-23 22:37:03 +00:00
{{%/* notice primary "There may be pirates" "skull-crossbones" */%}}
It is all about the boxes.
2017-08-20 15:10:29 +00:00
{{%/* /notice */%}}
2021-07-16 20:04:22 +00:00
````
2017-08-20 15:10:29 +00:00
{{% /tab %}}
{{% tab title="partial" %}}
````go
{{ partial "shortcodes/notice.html" (dict
"page" .
"style" "primary"
"title" "There may be pirates"
"icon" "skull-crossbones"
"content" "It is all about the boxes."
)}}
````
2022-05-23 22:37:03 +00:00
{{% /tab %}}
{{< /tabs >}}
Callout syntax has limited features as it does not provide all of the below parameter. Nevertheless, it is widely available in other Markdown parsers like with [GitHub alerts](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts) or [Obsidian callouts](https://help.obsidian.md/Editing+and+formatting/Callouts#Change+the+title) and therefore is the recommend syntax for generating portable Markdown.
If you want to display a transparent expandable box without any border, you can also use the [`expand` shortcode](/shortcodes/expand).
2022-05-23 22:37:03 +00:00
### Parameter
2024-09-01 11:56:39 +00:00
| Name | Position | Default | Notes |
|-----------------------|----------|-----------------|-------------|
| **style** | 1 | `default` | The style scheme used for the box.<br><br>- by severity: `caution`, `important`, `info`, `note`, `tip`, `warning`<br>- by brand color: `primary`, `secondary`, `accent`<br>- by color: `blue`, `cyan`, `green`, `grey`, `magenta`, `orange`, `red`<br>- by special color: `default`, `transparent`, `code`<br><br>You can also [define your own styles](#defining-own-styles). |
| **color** | | see notes | The [CSS color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value) to be used. If not set, the chosen color depends on the **style**. Any given value will overwrite the default.<br><br>- for severity styles: a nice matching color for the severity<br>- for all other styles: the corresponding color<br><br>This is not available using callout syntax. |
2024-09-01 11:56:39 +00:00
| **title** | 2 | see notes | Arbitrary text for the box title. Depending on the **style** there may be a default title. Any given value will overwrite the default.<br><br>- for severity styles: the matching title for the severity<br>- for all other styles: _&lt;empty&gt;_<br><br>If you want no title for a severity style, you have to set this parameter to `" "` (a non empty string filled with spaces) |
| **icon** | 3 | see notes | [Font Awesome icon name](shortcodes/icon#finding-an-icon) set to the left of the title. Depending on the **style** there may be a default icon. Any given value will overwrite the default.<br><br>- for severity styles: a nice matching icon for the severity<br>- for all other styles: _&lt;empty&gt;_<br><br>If you want no icon for a severity style, you have to set this parameter to `" "` (a non empty string filled with spaces)<br><br>This is not available using callout syntax. |
2024-09-03 17:41:49 +00:00
| **expanded** | | _&lt;empty&gt;_ | Whether to draw an expander and how the content is displayed.<br><br>- _&lt;empty&gt;_: no expander is drawn and the content is permanently shown<br>- `true`: the expander is drawn and the content is initially shown<br>- `false`: the expander is drawn and the content is initially hidden |
2022-10-31 11:10:36 +00:00
| _**&lt;content&gt;**_ | | _&lt;empty&gt;_ | Arbitrary text to be displayed in box. |
## Settings
### Defining own Styles
{{% badge style="cyan" icon="gears" title=" " %}}Option{{% /badge %}} Besides the predefined `style` values [from above](#parameter), you are able to define your own.
{{< multiconfig file=hugo >}}
[params]
boxStyle = [
{ identifier = 'magic', i18n = '', title = 'Magic', icon = 'rainbow', color = 'gold' }
]
{{< /multiconfig >}}
The `style` parameter used in a shortcode must match the `identifier` in the configuration. The title for the style will be determined from the configured `title`. If no `title` but a `i18n` is set, the title will be taken from the translation files by that key. The `title` may be empty in which case, the box does not contain a default title. `icon` and `color` are working similar.
2024-09-12 09:16:53 +00:00
You can also redefine the predefined styles if you're not satisfied with the default values.
Below is a [usage example](#user-defined-style).
2021-07-16 20:04:22 +00:00
## Examples
### By Severity Using Callout Syntax
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
````md
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!INFO]
> Information that users <ins>_might_</ins> find interesting.
2024-09-01 11:56:39 +00:00
> [!NOTE]
> Useful information that users should know, even when skimming content.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!TIP]
> Helpful advice for doing things better or more easily.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
````
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!INFO]
> Information that users <ins>_might_</ins> find interesting.
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
> [!NOTE]
> Useful information that users should know, even when skimming content.
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
> [!TIP]
> Helpful advice for doing things better or more easily.
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
2024-09-01 11:56:39 +00:00
### By Brand Colors with Title and Icon Variantion
````go
2024-09-01 11:56:39 +00:00
{{%/* notice style="primary" title="Primary" */%}}
A **primary** disclaimer
{{%/* /notice */%}}
{{%/* notice style="secondary" title="Secondary" */%}}
2024-09-01 11:56:39 +00:00
A **secondary** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
2021-07-16 20:04:22 +00:00
{{%/* notice style="accent" icon="stopwatch" */%}}
2024-09-01 11:56:39 +00:00
An **accent** disclaimer
2024-02-27 16:24:16 +00:00
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
````
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
{{% notice style="primary" title="Primary" %}}
A **primary** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2017-08-20 15:10:29 +00:00
{{% notice style="secondary" title="Secondary" %}}
2024-09-01 11:56:39 +00:00
A **secondary** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2021-07-16 20:04:22 +00:00
{{% notice style="accent" icon="stopwatch" %}}
2024-09-01 11:56:39 +00:00
An **accent** disclaimer
2017-08-20 15:10:29 +00:00
{{% /notice %}}
### By Color
2022-05-23 22:37:03 +00:00
````go
{{%/* notice style="blue" title="Blue"*/%}}
2024-09-01 11:56:39 +00:00
A **blue** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
2017-08-20 15:10:29 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="cyan" title="Cyan" */%}}
A **cyan** disclaimer
2021-07-16 20:04:22 +00:00
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
{{%/* notice style="green" title="Green" */%}}
A **green** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="grey" icon="bug" */%}}
A **grey** disclaimer
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
{{%/* notice style="magenta" title="Magenta" */%}}
A **magenta** disclaimer
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
2024-09-01 11:56:39 +00:00
{{%/* notice style="orange" title="Orange" icon="bug" */%}}
A **orange** disclaimer
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
{{%/* notice style="red" title="Red" */%}}
2024-09-01 11:56:39 +00:00
A **red** disclaimer
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
````
2021-07-16 20:04:22 +00:00
{{% notice style="blue" title="Blue" %}}
A **blue** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2021-07-16 20:04:22 +00:00
2024-09-01 11:56:39 +00:00
{{% notice style="cyan" title="Cyan" %}}
A **cyan** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
{{% notice style="green" title="Green" %}}
A **green** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
{{% notice style="grey" icon="bug" %}}
A **grey** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
2024-09-01 11:56:39 +00:00
{{% notice style="magenta" title="Magenta" %}}
A **magenta** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
{{% notice style="orange" title="Orange" icon="bug" %}}
A **orange** disclaimer
2022-05-23 22:37:03 +00:00
{{% /notice %}}
{{% notice style="red" title="Red" %}}
A **red** disclaimer
{{% /notice %}}
2022-05-23 22:37:03 +00:00
### By Special Color
````go
{{%/* notice style="default" title="Default" icon="skull-crossbones" */%}}
Just some grey default color.
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
{{%/* notice style="code" title="Code" icon="skull-crossbones" */%}}
Colored like a code fence.
{{%/* /notice */%}}
2022-05-23 22:37:03 +00:00
{{%/* notice style="transparent" title="Transparent" icon="skull-crossbones" */%}}
No visible borders.
2022-05-23 22:37:03 +00:00
{{%/* /notice */%}}
````
{{% notice style="default" title="Default" icon="skull-crossbones" %}}
Just some grey default color.
{{% /notice %}}
{{% notice style="code" title="Code" icon="skull-crossbones" %}}
Colored like a code fence.
{{% /notice %}}
{{% notice style="transparent" title="Transparent" icon="skull-crossbones" %}}
No visible borders.
{{% /notice %}}
2023-01-23 21:35:43 +00:00
2024-09-01 11:56:39 +00:00
### Various Features
#### With User-Defined Color, Font Awesome Brand Icon and Markdown in Title and Content
````go
{{%/* notice color="fuchsia" title="**Hugo** is _awesome_" icon="fa-fw fab fa-hackerrank" */%}}
2024-09-01 11:56:39 +00:00
{{% include "shortcodes/include/INCLUDE_ME.md" %}}
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
````
{{% notice color="fuchsia" title="**Hugo** is _awesome_" icon="fa-fw fab fa-hackerrank" %}}
{{% include "shortcodes/include/INCLUDE_ME.md" %}}
{{% /notice %}}
#### Expandable Content Area
````go
{{%/* notice style="green" title="Expand me..." expanded="true" */%}}
2024-09-01 11:56:39 +00:00
No need to press you!
{{%/* /notice */%}}
{{%/* notice style="red" title="Expand me..." expanded="false" */%}}
Thank you!
{{%/* /notice */%}}
2024-09-01 11:56:39 +00:00
````
{{% notice style="green" title="Expand me..." expanded="true" %}}
2024-09-01 11:56:39 +00:00
No need to press you!
{{% /notice %}}
2023-01-23 21:35:43 +00:00
{{% notice style="red" title="Expand me..." expanded="false" %}}
2024-09-01 11:56:39 +00:00
Thank you!
{{% /notice %}}
#### No Content or No Title
````go
{{%/* notice style="accent" title="Just a bar" */%}}
{{%/* /notice */%}}
{{%/* notice style="accent" */%}}
Just a box
2023-01-23 21:35:43 +00:00
{{%/* /notice */%}}
````
{{% notice style="accent" title="Just a bar" %}}
2024-09-01 11:56:39 +00:00
{{% /notice %}}
{{% notice style="accent" %}}
Just a box
2023-01-23 21:35:43 +00:00
{{% /notice %}}
#### Various Callouts
````go
2024-09-03 21:04:49 +00:00
> [!caution] Callouts can have custom titles
> Like this one.
2024-09-03 21:04:49 +00:00
> [!caution] Title-only callout
> [!note]- Are callouts foldable?
> Yes! In a foldable callout, the contents are hidden when the callout is collapsed
> [!note]+ Are callouts foldable?
> Yes! In a foldable callout, the contents are hidden when the callout is collapsed
2024-09-03 21:04:49 +00:00
> [!info] Can callouts be nested?
> > [!important] Yes!, they can.
> > > [!tip] You can even use multiple layers of nesting.
````
2024-09-03 21:02:11 +00:00
> [!caution] Callouts can have custom titles
> Like this one.
2024-09-03 21:02:11 +00:00
> [!caution] Title-only callout
> [!note]- Are callouts foldable?
> Yes! In a foldable callout, the contents are hidden when the callout is collapsed
> [!note]+ Are callouts foldable?
> Yes! In a foldable callout, the contents are hidden when the callout is collapsed
2024-09-03 21:04:49 +00:00
> [!info] Can callouts be nested?
> > [!important] Yes!, they can.
> > > [!tip] You can even use multiple layers of nesting.
#### Code with Collapsed Colored Borders
````
2024-09-06 06:55:22 +00:00
> [!secondary]
> ```c
> // With colored border in Markdown syntax
2024-09-06 06:58:29 +00:00
> printf("Hello World!");
> ```
{{%/* notice style="red" */%}}
```c
// With colored border in Shortcode syntax
2024-09-06 06:58:29 +00:00
printf("Hello World!");
```
{{%/* /notice */%}}
````
2024-09-06 06:55:22 +00:00
> [!secondary]
> ```c
> // With colored border in Markdown syntax
2024-09-06 06:58:29 +00:00
> printf("Hello World!");
> ```
{{% notice style="red" %}}
```c
// With colored border in Shortcode syntax
2024-09-06 06:58:29 +00:00
printf("Hello World!");
```
{{% /notice %}}
#### User-defined Style
Self-defined styles can be [configured](#defining-own-styles) in your `hugo.toml` and used for every shortcode, that accepts a `style` parameter.
````
> [!magic]
> Maaagic!
````
> [!magic]
> Maaagic!