-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
64 lines (53 loc) · 1.37 KB
/
_config.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
# This is a config file for Jekyll, the static site generator used by GitHub Pages.
#
# In our setup, the top-level README.md is the landing page,
# while the rest of the pages and all assets are in the docs folder.
#
# This way, we can use the main branchs' README.md as main website,
# add subpages for the tutorial and deep dive docs,
# while avoiding Jekyll clutter in the repo root.
remote_theme: pages-themes/[email protected]
plugins:
- jekyll-remote-theme
includes_dir: docs/_includes
data_dir: docs/_data
layouts_dir: docs/_layouts
sass:
sass_dir: docs/assets/_sass
# Support collapsible details/summary sections
markdown: CommonMarkGhPages
commonmark:
options: ["UNSAFE", "SMART", "FOOTNOTES"]
extensions: ["strikethrough", "autolink", "table", "tagfilter"]
# Tell Jekyll to use README.md and docs/ only.
#
# For some reason exluding root and then including only these does not work,
# see https://github.com/jekyll/jekyll/issues/9116
# So, we have to take the explicit detour…
exclude:
# Jekyll default excludes
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- Gemfile
- Gemfile.lock
- node_modules/
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
# Custom C++ excludes
- build
- cmake
- CMakeLists.txt
- demo
- gui
- include
- src
- test
# Docker files
- /**/*ocker*
- /*ocker*
# Others
- CODEOWNERS
- LICENSE