forked from fullcalendar/fullcalendar-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
89 lines (69 loc) · 1.82 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
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
# NOTE: keep in sync with .gitignore
# (except for dotfiles which are automatically excluded)
exclude:
- node_modules
- bin
- src
- vendor # rubygems in TravisCI
- Gemfile
- Gemfile.lock
- package.json
- package-lock.json
- webpack.config.js
- gulpfile.js
- README.md
plugins:
- jekyll-paginate
- jekyll-archives
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge
production_baseurl: https://fullcalendar.io
fullcalendar_org: https://github.com/fullcalendar
fullcalendar_repo: https://github.com/fullcalendar/fullcalendar
fullcalendar_scheduler_repo: https://github.com/fullcalendar/fullcalendar-scheduler
fullcalendar_react_repo: https://github.com/fullcalendar/fullcalendar-react
fullcalendar_vue_repo: https://github.com/fullcalendar/fullcalendar-vue
fullcalendar_angular_repo: https://github.com/fullcalendar/fullcalendar-angular
disqus_shortname: adamshawsblog
paginate: 10
paginate_path: /blog/page:num
# ordered by how they should appear in UI
available_versions:
- id: v5
collection: docs-v5
is_latest: true
- id: v4
collection: docs-v4
- id: v3
collection: docs-v3
- id: v2
aliased_to: v3
- id: v1
collection: docs-v1
# `output: true` says a page should be generated for each document.
# NOTE: if you change the permalink structure, you must also change
# the permalinks in the _docs-*/index.md files.
collections:
docs-v5:
output: true
permalink: /docs/:slug
docs-v4:
output: true
permalink: /docs/v4/:slug
docs-v3:
output: true
permalink: /docs/v3/:slug
docs-v1:
output: true
permalink: /docs/v1/:slug
posts: # will output by default
permalink: /blog/:year/:month/:title
defaults:
# will apply default values to all posts
- scope:
path: ""
type: posts
values:
layout: blog-post