-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathdocument.qmd
More file actions
86 lines (63 loc) · 1.37 KB
/
document.qmd
File metadata and controls
86 lines (63 loc) · 1.37 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
title: Callouts
format:
html:
quality: 2
docusaurus-md:
quality: 1
dashboard:
quality: 0
comment: "Bug: Callout icons show on a separate line from the title."
markdown:
quality: 0
comment: "Should we be emitting that `<div>`? What output are we even targeting here?"
gfm:
quality: 1
comment: "Custom titles are not supported in GFM yet, we simply output a new heading."
pdf:
quality: 1
typst:
quality: 1
docx:
quality: 1
revealjs:
quality: 2
beamer:
quality: 1
ipynb:
quality: 0
comment: "Ipynb callouts are emitted as plain markdown callouts. Is that what we want?"
_quarto:
tests:
html:
ensureHtmlElements:
-
- "div.callout.callout-note"
- "div.callout.callout-note div.callout-header div.callout-title-container"
- "div.callout.callout-note div.callout-body p"
docusaurus-md:
ensureFileRegexMatches:
- [":::note\\[A small note\\]"]
---
::: {.callout-note}
## A small note
You should note that this is a note.
:::
::: {.callout-warning}
A callout does not need a title.
:::
::: {.callout-note}
## A callout does not need content
:::
::: {.callout-note}
:::
::: {.callout-note collapse="true" appearance="minimal"}
## A small note
You should note that this is a note.
:::
::: {.callout}
:::
::: {.callout}
## Title
Content
:::