forked from mcanouil/quarto-highlight-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.qmd
142 lines (110 loc) · 2.46 KB
/
example.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
---
title: "Highlight-text Quarto Extension"
format:
html:
output-file: index
typst:
output-file: highlight-typst
pdf:
output-file: highlight-latex
docx:
output-file: highlight-docx
revealjs:
output-file: highlight-revealjs
beamer:
output-file: highlight-beamer
pptx:
output-file: highlight-pptx
format-links: true
embed-resources: true
execute:
echo: true
filters:
- highlight-text
---
This is a Quarto extension that allows to highlight text in a document for various format: HTML, LaTeX, Typst, and Docx.
## Installing
```bash
quarto add mcanouil/highlight-text
```
This will install the extension under the `_extensions` subdirectory.
If you're using version control, you will want to check in this directory.
## Using {.smaller}
To use the extension, add the following to your document's front matter:
```yaml
filters:
- highlight-text
```
Then you can use the span syntax markup to highlight text in your document.
::: {.content-hidden when-format="pptx"}
:::: {layout-ncol="2"}
::::: {#UK}
```markdown
[Red text]{colour="#b22222"}
```
[Red text]{colour="#b22222"}
```markdown
[Red background]{bg-colour="#b22222"}
```
[Red background]{bg-colour="#b22222"}
```markdown
[White text, Red background]{
colour="#FFFFFF" bg-colour="#b22222"
}
```
[White text, Red background]{colour="#FFFFFF" bg-colour="#b22222"}
:::::
::::: {#US}
```markdown
[Blue text]{color="#0000FF"}
```
[Blue text]{color="#0000FF"}
```markdown
[Blue background]{bg-color="#0000FF"}
```
[Blue background]{bg-color="#0000FF"}
```markdown
[White text, Blue background]{
color="#FFFFFF" bg-color="#0000FF"
}
```
[White text, Blue background]{color="#FFFFFF" bg-color="#0000FF"}
:::::
::::
:::
::: {.content-visible when-format="pptx"}
:::: {.columns}
::::: {.column width="50%"}
```markdown
[Red text]{colour="#b22222"}
```
[Red text]{colour="#b22222"}
```markdown
[Red background]{bg-colour="#b22222"}
```
[Red background]{bg-colour="#b22222"}
```markdown
[White text, Red background]{
colour="#FFFFFF" bg-colour="#b22222"
}
```
[White text, Red background]{colour="#FFFFFF" bg-colour="#b22222"}
:::::
::::: {.column width="50%"}
```markdown
[Blue text]{color="#0000FF"}
```
[Blue text]{color="#0000FF"}
```markdown
[Blue background]{bg-color="#0000FF"}
```
[Blue background]{bg-color="#0000FF"}
```markdown
[White text, Blue background]{
color="#FFFFFF" bg-color="#0000FF"
}
```
[White text, Blue background]{color="#FFFFFF" bg-color="#0000FF"}
:::::
::::
:::