-
Notifications
You must be signed in to change notification settings - Fork 5
/
_config.yml
148 lines (119 loc) · 4.19 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
output: web
# this property is useful for conditional filtering of content that is separate from the PDF.
topnav_title: MBON Data and File Formatting Home
# this appears on the top navigation bar next to the home button; replace the value with your site name
site_title: IOOS GitHub Documentation
# this appears in the html browser tab for the site title (seen mostly by search engines, not users)
company_name: US IOOS
# this appears in the footer
host: 127.0.0.1
# the preview server used. Leave as is.
port: 4000
# the port where the preview is rendered. You can leave this as is unless you have other Jekyll builds using this same port that might cause conflicts. in that case, use another port such as 4006.
# Reading Files
include:
- .htaccess
#- _pages
#- theme/_data/topnav.yml
exclude:
- .idea/
- .gitignore
- Gemfile*
- theme/pages
#- theme/posts
- theme/Dockerfile
- theme/Gemfile
- theme/Gemfile.lock
- theme/search.json
- theme/update.sh
- theme/pdf-*
#- theme/
feedback_subject_line: MBON Data and File Formatting Documentation
# subject line prefix for feedback emails
feedback_email: [email protected]
# used as a contact email for the Feedback link in the top navigation bar
# feedback_disable: true
# if you uncomment the previous line, the Feedback link gets removed
# feedback_text: "Need help?"
# if you uncomment the previous line, it changes the Feedback text
# feedback_link: "http://helpy.io/"
# if you uncomment the previous line, it changes where the feedback link points to
highlighter: rouge
# library used for syntax highlighting
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
hard_wrap: false
syntax_highlighter: rouge
# filter used to process markdown. note that kramdown differs from github-flavored markdown in some subtle ways
collections:
tooltips:
output: false
docs:
output: true
# using /docs/:name causes many link/path failures in hard-coded paths or values
# written into the templates (search, nav menu, etc). Instead just output :name
#permalink: /docs/:name
permalink: :name:output_ext
# collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "page"
comments: true
search: true
sidebar: sidebar_ioos
topnav: topnav_ioos
-
scope:
path: ""
type: "docs"
values:
layout: "page"
comments: true
search: true
sidebar: sidebar_ioos
topnav: topnav_ioos
-
scope:
path: ""
type: "tooltips"
values:
layout: "page"
comments: true
search: true
tooltip: true
-
scope:
path: ""
type: "posts"
values:
layout: "post"
comments: true
search: true
sidebar: sidebar_ioos
topnav: topnav_ioos
# these are defaults used for the frontmatter for these file types
sidebars:
- sidebar_ioos
description: "Intended as a documentation theme based on Jekyll for technical writers documenting software and other technical products, this theme has all the elements you would need to handle multiple products with both multi-level sidebar navigation, tags, and other documentation features."
# the description is used in the feed.xml file
#disqus_shortname: idrbwjekyll
# if you're using disqus for comments, add the shortname here. if not, leave this value blank.
# EDIT HERE! Added settings for IOOS (replace 'ioos-documentation-jekyll-skeleton' with your GitHub repo name):
url : "https://ioos.github.io"
baseurl : "/mbon-docs"
repository : "ioos/mbon-docs"
github_editme_path : "ioos/mbon-docs/blob/gh-pages/_docs"
# if you're using Github, provide the basepath to the branch you've created for reviews, following the sample here. if not, leave this value blank.
#Setup/config for 'ioos_jekyll_theme' git submodule:
source : .
destination : _site
plugins_dir : theme/_plugins
layouts_dir : theme/_layouts
data_dir : _data
includes_dir : theme/_includes