-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
81 lines (76 loc) · 2.6 KB
/
mkdocs.yml
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
site_name: R Devel Container Docs
repo_name: r-devel/r-dev-env
repo_url: https://github.com/r-devel/r-dev-env
nav:
- 'Home': 'index.md'
- 'Container Setup':
- 'Overview': 'container_setup/index.md'
- 'Github Codespace':
- 'Starting Codespace': 'container_setup/github_codespace/creating_codespace.md'
- 'Stopping and Restarting' : 'container_setup/github_codespace/codespacestartstop.md'
- 'Collaborating with Live Share' : 'container_setup/github_codespace/live_share.md'
- 'Gitpod Workspace':
- 'Start Workspace': 'container_setup/gitpod_workspace/workspacestart.md'
- 'Stopping and Restarting' : 'container_setup/gitpod_workspace/workspacestop_and_restart.md'
- 'Collaborating with Live Share' : 'container_setup/gitpod_workspace/live_share.md'
- 'Local Setup' :
- 'Docker': 'container_setup/local_setup/localsetup.md'
- 'Tutorials':
- 'Running R' : 'tutorials/running_r.md'
- 'Building R': 'tutorials/building_r.md'
- 'R Contribution Workflow' : 'tutorials/contribution_workflow.md'
- 'Updating Source Code' : 'tutorials/update_source.md'
- 'Creating a Patch File' : 'tutorials/patch_update.md'
- 'Multiple R Versions' : 'tutorials/multi_r_compilation.md'
- 'SVN Help' : 'tutorials/svn_help.md'
- 'Contributor Guide' :
- 'contributor_guide/contributing_to_docs.md'
- 'contributor_guide/contributing_to_codebase.md'
- 'Resources' : 'resources.md'
- 'Troubleshooting Info' : 'troubleshoot.md'
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: indigo
accent: blue
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
primary: indigo
accent: blue
plugins:
- social
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/r-devel/r-dev-env/
- icon: fontawesome/brands/slack
link: https://r-contributors.slack.com/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list