Extension hints
Hints are boxes with information that is only visible when the reader clicks on the header.
The top of the hint is specified with a YAML section. The content of the hint is provided as post-YAML section, directly following the YAML header. It ends after two consecutive empty lines.
| Python type | Hint |
| type | hint |
| Language | YAML |
| Required fields |
| Optional fields | title, image |
| Post-Yaml Section | optional |
Example 1
Within the content you can have lists:
- 10.0.0.0/8
- 172.16.0.0/12
- 192.168.0.0/16
Source Code
--- type: hint title: Hint about Something --- Within the content you can have lists: * 10.0.0.0/8 * 172.16.0.0/12 * 192.168.0.0/16
---
type: hint
title: Hint about Something
---
Within the content you can have lists:
* 10.0.0.0/8
* 172.16.0.0/12
* 192.168.0.0/16Example 2
Source Code
--- type: hint title: Hint about Something image: hint.png ---
---
type: hint
title: Hint about Something
image: hint.png
---