-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path_quarto.yml
More file actions
133 lines (124 loc) · 3.71 KB
/
_quarto.yml
File metadata and controls
133 lines (124 loc) · 3.71 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
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
project:
type: website
render:
- "*.qmd"
- "*.md"
- "!CONTRIBUTING.md"
execute:
freeze: true
website:
title: "extendr"
site-url: https://extendr.github.io
repo-url: https://github.com/extendr/extendr.github.io
repo-branch: main
repo-actions: [edit, issue]
favicon: "/images/extendr-gears-logo.png"
page-navigation: true
bread-crumbs: true
navbar:
search: true
right:
- text: "INSTALL"
href: installation-guide.qmd
- text: DOCS
menu:
- text: "User Guide"
href: user-guide/index.qmd
- text: "{extendr} crates"
href: https://extendr.github.io/extendr/
- text: "{rextendr} package"
href: https://extendr.github.io/rextendr/dev
- text: "Intro to Rust"
href: intro-rust/index.qmd
- text: "Contributing"
href: contributing/index.qmd
- text: "NEWS"
href: blog/index.qmd
- icon: github
href: https://github.com/extendr/extendr
- icon: discord
href: https://discord.gg/7hmApuc
sidebar:
- id: rust-basics
title: "Rust Basics"
collapse-level: 2
contents:
- section: "Rust Basics"
href: intro-rust/index.qmd
contents:
- intro-rust/hello-world.qmd
- intro-rust/types.qmd
- intro-rust/control-flow.qmd
- intro-rust/collections.qmd
- intro-rust/loops.qmd
- intro-rust/mutability.qmd
- intro-rust/functions.qmd
- intro-rust/ownership.qmd
- intro-rust/iterators.qmd
- intro-rust/structures.qmd
- intro-rust/implementations.qmd
- intro-rust/enumerations.qmd
- id: guide
title: "User Guide"
collapse-level: 3
contents:
- section: "User Guide"
href: user-guide/index.qmd
contents:
- user-guide/complete-example.qmd
- section: "Core Concepts"
contents:
- user-guide/data-types.qmd
- user-guide/extendr-macro.qmd
- section: "Type Mapping"
contents:
- user-guide/scalars.qmd
- user-guide/vectors.qmd
- user-guide/collections.qmd
- user-guide/into-list.qmd
- user-guide/default-args.qmd
- section: "R Packages"
contents:
- user-guide/package-structure.qmd
- section: "Integrations"
contents:
- user-guide/serde-integration.qmd
- user-guide/tokio.qmd
- user-guide/webr.qmd
- section: "Publishing"
contents:
- user-guide/cran-publishing.qmd
- user-guide/cran-msrv.qmd
- user-guide/faq.qmd
- id: contributing
title: "Contributing"
collapse-level: 2
contents:
- section: "Contributing"
href: contributing/index.qmd
contents:
- contributing/writing-code.qmd
- contributing/documenting-code.qmd
- contributing/testing-code.qmd
- contributing/extendr-internals.qmd
- contributing/rextendr-internals.qmd
- contributing/colors-and-fonts.qmd
format:
html:
html-table-processing: none
theme:
light: [flatly, css/extendr.scss]
dark: [darkly, css/extendr.scss]
toc: true
toc-location: right
grid:
sidebar-width: 250px
body-width: 900px
margin-width: 300px
# this currently does not work
# see: https://github.com/quarto-dev/quarto-cli/issues/3157
engine: knitr
knitr:
opts_chunk:
collapse: true
comment: "#>"