-
Notifications
You must be signed in to change notification settings - Fork 335
/
Copy pathrendering.Rmd
238 lines (152 loc) · 3 KB
/
rendering.Rmd
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
---
title: "Output Rendering"
subtitle: "Subtitle is skipped from the TOC"
author: "Author is skipped from the TOC"
date: "Date is skipped from the TOC"
---
```{r include = FALSE}
knitr::opts_chunk$set(collapse = TRUE, comment = "#>")
```
This vignette tests pkgdown output rendering for several use cases.
# Footnotes
Yay[^footnote]
[^footnote]: Including **footnotes**! 😁
# Highlighting
This document uses a variety of linking styles for testing purposes
## Inline code
Local:
* `vignette("pkgdown")`
* `build_site()`
* `?template_navbar`
Remote:
* `MASS::enlist`
* `MASS::enlist()`
* `?MASS::enlist`
* `%in%`
* `` ?`%in%` ``
## Spurious links
These shouldn't be linked.
* `Authors@R`
* `content-home.html`
* `toc: depth`
* `x = y`
## Code blocks
```{r, eval = FALSE}
# Shouldn't get linked
enlist(5)
# Should get linked
MASS::enlist(5)
```
```{r}
library(MASS)
enlist(5)
```
```{r}
# Should get linked because MASS was loaded previously
enlist(5)
```
---
# Figures
```{r}
plot(1:10)
```
---
# External files
```{r}
x <- readLines("test.txt")
x
```

---
# Details tag
<details>
This should only be shown when required
</details>
<details>
<summary>Some R code</summary>
```{r}
1 + 2
```
</details>
---
# Tables
| col 1 | col 2 | col 3 | col 4 |
|:---------------|:-----------|:-------:|:---------:|
| Brightness | Total brightness, total reflectance, spectral intensity | $$y = x^2$$ | test |
---
# Mathjax
$$f(x) = \dfrac{1}{\sqrt{2\pi\sigma^2}} e^{-\frac{(x-\mu^2)}{2\sigma^2}}$$
Inline equations: $y=x^2$
---
# Widgets
Test spacing above widget.
```{r, echo=FALSE}
# set seed for reproducible widget id
if (requireNamespace("htmltools", quietly = TRUE)) {
htmlwidgets::setWidgetIdSeed(42)
}
path1 <- tempfile()
writeLines(letters, path1)
path2 <- tempfile()
writeLines(letters[-(10:11)], path2)
diffviewer::visual_diff(path1, path2)
```
Test spacing below widget.
---
# Crayon
```{r}
cat(crayon::red("This is red"), "\n")
cat(crayon::blue("This is blue\n"), "\n")
message(crayon::green("This is green"))
warning(crayon::bold("This is bold"))
```
Some text
```{r, error = TRUE}
stop(crayon::italic("This is italic"))
```
Some more text
# Quoted text
> Single-line quote about something miscellaneous.
| When dollars appear it's a sign
| that your code does not quite align
| Ensure that your math
| in xaringan hath
| been placed on a single long line
## Details
Blablablablablabla.
Blablablablablabla.
<details>
<summary>Short summary</summary>
<p>Blablablablablabla.</p>
</details>
Blablablablablabla.
# This section is unnumbered {-}
There should however be no bug here!
## Results in tabset {.tabset .tabset-pills}
### Tab 1
blablablabla
```r
1 + 1
```
### Tab 2
blop
## Results in tabset, no pills {.tabset}
### A thing
something nice
```{r}
plot(1:42)
```
#### cool
yay
### Tab 2 {.active}
hello
## Results in tabset, fading {.tabset .tabset-fade}
### Something
ok
```{r}
plot(1)
```
#### cool
yay
### Nice {.active}
bonjour