-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.qmd
More file actions
40 lines (35 loc) · 614 Bytes
/
example.qmd
File metadata and controls
40 lines (35 loc) · 614 Bytes
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
---
title: "Language Cell Decorator"
subtitle: "Quarto Extension"
author:
- name: "Mickaël CANOUIL, _Ph.D._"
orcid: "0000-0002-3396-4549"
url: "https://mickael.canouil.fr"
format:
html:
output-file: index
toc: true
code-tools: true
revealjs:
output-file: example-revealjs
execute:
echo: true
format-links: true
embed-resources: true
filters:
- language-cell-decorator
---
## Examples
```{r}
print("Hello, World!")
```
```{.r}
print("Hello, World!")
```
```{r}
#| filename: example1.r
print("Hello, World!")
```
```{.r filename=example2.r}
print("Hello, World!")
```