hugo-theme-relearn/exampleSite/content/shortcodes/notice.en.md
Sören Weber c4215dd154
include: new shortcode #43
necessary for inclusion of CHANGELOG.md
2021-08-23 22:16:08 +02:00

3.1 KiB

title description
Notice Disclaimers to help you structure your page

The notice shortcode shows four types of disclaimers to help you structure your page.

Usage

{{%/* notice [ note | info | tip | warning ] */%}}
Some markup
{{%/* /notice */%}}

Examples

Note

{{% notice note %}} A notice disclaimer

You can add:

  • multiple paragraphs
  • bullet point lists
  • emphasized, bold and even bold emphasized text
  • links
  • other shortcodes besides notice
  • etc.
...and even source code

the possiblities are endless {{% /notice %}}

{{% expand "Show markup" %}}

{{%/* notice note */%}}
A **notice** disclaimer

You can add:

- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** and even ***bold emphasized*** text
- [links](https://example.com)
- other shortcodes besides `notice`
- etc.

```
...and even source code
```

> the possiblities are endless
{{%/* /notice */%}}

{{% /expand %}}

Info

{{% notice info %}} An information disclaimer

You can add:

  • multiple paragraphs
  • bullet point lists
  • emphasized, bold and even bold emphasized text
  • links
  • other shortcodes besides notice
  • etc.
...and even source code

the possiblities are endless {{% /notice %}}

{{% expand "Show markup" %}}

{{%/* notice info */%}}
An **information** disclaimer

You can add:

- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** and even ***bold emphasized*** text
- [links](https://example.com)
- other shortcodes besides `notice`
- etc.

```
...and even source code
```

> the possiblities are endless
{{%/* /notice */%}}

{{% /expand %}}

Tip

{{% notice tip %}} A tip disclaimer

You can add:

  • multiple paragraphs
  • bullet point lists
  • emphasized, bold and even bold emphasized text
  • links
  • other shortcodes besides notice
  • etc.
...and even source code

the possiblities are endless {{% /notice %}}

{{% expand "Show markup" %}}

{{%/* notice tip */%}}
A **tip** disclaimer

You can add:

- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** and even ***bold emphasized*** text
- [links](https://example.com)
- other shortcodes besides `notice`
- etc.

```
...and even source code
```

> the possiblities are endless
{{%/* /notice */%}}

{{% /expand %}}

Warning

{{% notice warning %}} A warning disclaimer

You can add:

  • multiple paragraphs
  • bullet point lists
  • emphasized, bold and even bold emphasized text
  • links
  • other shortcodes besides notice
  • etc.
...and even source code

the possiblities are endless {{% /notice %}}

{{% expand "Show markup" %}}

{{%/* notice warning */%}}
A **warning** disclaimer

You can add:

- multiple paragraphs
- bullet point lists
- _emphasized_, **bold** and even ***bold emphasized*** text
- [links](https://example.com)
- other shortcodes besides `notice`
- etc.

```
...and even source code
```

> the possiblities are endless
{{%/* /notice */%}}

{{% /expand %}}