-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_specific.qmd
58 lines (44 loc) · 1.24 KB
/
example_specific.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
title: "Collapse-callout Example"
author: Shafayet Khan Shafee
date: "26 Oct, 2022"
date-modified: last-modified
date-format: "DD MMM, YYYY"
filters:
- collapse-callout
collapse-callout:
tip: true
note: false
warning: false
caution: true
callout-appearance: minimal
callout-icon: false
format:
html:
code-tools: true
self-contained: true
---
> View the source code by clicking `</> Code` on the top right corner.
## Callout Blocks
:::{.callout-note collapse='true'}
### Note
Note that there are five types of callouts, including:
`note`, `warning`, `important`, `tip`, and `caution`.
:::
:::{.callout-tip}
### Tip With Caption
This is an example of a callout with a caption.
:::
## More callout blocks
:::{.callout-caution}
## Expand To Learn About Collapse
This is an example of a 'folded' caution callout that can be expanded by the user. You can use `collapse="true"` to collapse it by default or `collapse="false"` to make a collapsible callout that is expanded by default.
:::
:::{.callout-important}
## Important
This is important and it is not collapsible, since we didn't specify either `true` or `false` for `important` in our YAML header.
:::
:::{.callout-warning icon='false' collapse='false'}
## warning
WARNINGS !!!!
:::