-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.qmd
272 lines (183 loc) · 4.15 KB
/
index.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
---
title: "Posit Documentation Theme Example"
---
## Level two
Some text for level two.
[Test link](https://docs.posit.co)
### Level three
Some text for level three and showing `inline-code` references.
### Another level three {.preview-header}
Here is a footnote reference,[^1] and another.
[^1]: Here is the footnote.
#### Level four
Four levels deep. How far can we go?
##### Level five
Five is jive.
###### Level six
Six is deep enough! Stop!
## Level two: coding
```r
cat("cats are cats\n")
```
```python
print("snakes are not cats")
```
```{.txt filename="Output or filenames"}
Checking Job Launcher configuration...
Ensuring server-user is a Job Launcher admin...
Getting list of Job Launcher clusters...
Job launcher configured with the following clusters: Kubernetes, Local
launcher-adhoc-clusters is empty - all clusters may be used to launch adhoc jobs
launcher-sessions-clusters is empty - all clusters may be used to launch session jobs
Waiting for job to finish...
Job has finished running
Job exited successfully
```
```default
The default language identifier; used sometimes for logs.
```
And now for a code block without any language identifier.
```
This is some text in a code block without a language tag.
```
### Tabsets and pills
::: {.panel-tabset}
### RHEL
```bash
$ yum install rstudio-workbench-rhel
```
### Ubuntu | Debian
```bash
$ dpkg
```
::: {.panel-tabset}
### Ubuntu 22.04
```bash
$ You can nest tabsets
```
### Ubuntu 20.04
```bash
$ Nesting
```
:::
### SUSE
```bash
$ zypper
```
:::
::: {.panel-tabset .nav-pills}
### Pills
You can use tabs and pills for text, code blocks, tables, etc.
### Code
A single code block
```bash
$ yum install rstudio-workbench-rhel
```
Nested pills
::: {.panel-tabset .nav-pills }
### RHEL
```bash
$ yum install rstudio-workbench-rhel
```
### Ubuntu | Debian
```bash
$ dpkg
```
### SUSE
```bash
$ zypper
```
:::
### Table
| | |
|-------|---------------------------|
| Table | some text about the table |
|Row | More stuff |
### Image
Example of an [informative image](https://www.w3.org/WAI/tutorials/images/informative/), with relevant alt text:
![](/_extensions/posit-docs/assets/images/posit-logo-fullcolor-TM.svg){width=120 alt="Posit logo"}
Example of a [decorative image](https://www.w3.org/WAI/tutorials/images/decorative/), with empty alt text:
![](/_extensions/posit-docs/assets/images/posit-logo-fullcolor-TM.svg){width=120 alt=""}
:::
## Level two: callouts
Code-first means using code first. Does that mean we never do things manually?
No. Hands-on is delightful.
::: {.callout-note}
This is a note.
:::
::: {.callout-warning}
Explains hazards that could damage a product, including data loss.
:::
::: {.callout-important}
This is important; don't ignore this information.
:::
::: {.callout-note collapse="true"}
This is a collapsed note.
:::
::: {.callout-note}
## Some notes are not
This is a note with an alternate title.
:::
## Level two: lists
### Unordered list
#### Compact
* ant
* bear
* cat
* dog
* elephant
* frog
* giraffe
* hyena
* iguana
* jaguar
* kangaroo
* lion
* mouse
#### Spaced
* This is some text that is presented as a spaced list.
This type of list is a good fit when there are multiple paragraphs or
complicated elements which span multiple lines.
* It is also good for code.
```python
forty_two = 21 * 2
```
* Sometimes, lists need to breathe.
### Ordered list
#### Compact
1. ant
1. bear
1. cat
1. dog
1. elephant
1. frog
1. giraffe
1. hyena
1. iguana
1. jaguar
1. kangaroo
1. lion
1. mouse
#### Spaced
1. This is some text that is presented as a spaced list.
This type of list is a good fit when there are multiple paragraphs or
complicated elements which span multiple lines.
1. It is also good for code.
```python
forty_two = 21 * 2
```
1. Sometimes, lists need to breathe.
### Mixed list
1. ant
* bear
* cat
* dog
1. elephant
* frog
* giraffe
1. hyena
1. iguana
* jaguar
1. kangaroo
1. lion
1. mouse