hugo-geekdoc/exampleSite/content/shortcodes/hints.md

41 lines
1.2 KiB
Markdown
Raw Normal View History

---
title: Hints
---
2020-01-12 14:33:02 +00:00
Hint shortcode can be used as hint/alerts/notification block.
2020-12-22 12:45:25 +00:00
There are four colors to choose: `info`, `ok`, `warning` and `danger`.
2020-01-12 14:33:02 +00:00
```tpl
{{</* hint [info|warning|danger] */>}}
2020-01-16 10:40:38 +00:00
**Markdown content**\
2020-05-31 16:17:32 +00:00
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
Ornateness bland it ex enc, est yeti am bongo detract re.
2020-01-12 14:33:02 +00:00
{{</* /hint */>}}
```
## Example
{{< hint info >}}
2020-01-16 10:40:38 +00:00
**Markdown content**\
2020-05-31 16:17:32 +00:00
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
2020-09-10 20:23:24 +00:00
Ornateness bland it ex enc, est yeti am bongo detract re.
2020-01-12 14:33:02 +00:00
{{< /hint >}}
2020-12-22 12:45:25 +00:00
{{< hint ok >}}
**Markdown content**\
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
Ornateness bland it ex enc, est yeti am bongo detract re.
{{< /hint >}}
2020-01-12 14:33:02 +00:00
{{< hint warning >}}
2020-01-16 10:40:38 +00:00
**Markdown content**\
2020-05-31 16:17:32 +00:00
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
2020-09-10 20:23:24 +00:00
Ornateness bland it ex enc, est yeti am bongo detract re.
2020-01-12 14:33:02 +00:00
{{< /hint >}}
{{< hint danger >}}
2020-01-16 10:40:38 +00:00
**Markdown content**\
2020-05-31 16:17:32 +00:00
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture.
2020-09-10 20:23:24 +00:00
Ornateness bland it ex enc, est yeti am bongo detract re.
2020-01-12 14:33:02 +00:00
{{< /hint >}}