-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.base.yml
201 lines (180 loc) · 6.07 KB
/
mkdocs.base.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#--content Project Information
site_name: NCAR HPC User Group (NHUG)
site_description: NHUG website
repo_url: https://github.com/NCAR/NHUG/
site_url: https://NCAR.github.io/NHUG/
site_author: CISL CSG (Consulting Services Group)
edit_uri: edit/main/docs/
# ------------------------------------
# -------- validation config ---------
# ------------------------------------
validation:
nav:
not_found: warn # check if stubs exist or not!
omitted_files: ignore # check for files that exist without any links to them in nav
absolute_links : warn # check for absolute links -- pointers to outside htmls in nav
links:
not_found: ignore # check for broken links inside mds. (to be activated later!)
absolute_links : ignore # check for absolute links -- pointers to outside htmls in files (to be activated later!)
unrecognized_links: ignore # unrecognized relative links (to be activated later!)
# ------------------------------------
# -- configurations
theme:
name: material
custom_dir: theme/
# -- additional features
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
features:
- search.suggest
- search.highlight
- content.tabs.link # all content tabs across the docs will be linked
- content.code.annotation # add annotations (advanced)
- content.code.annotate
- content.code.copy
- content.action.edit # edit the page
- content.action.view # view the source page
#- content.tooltips # Adding tooltip for hovering over links
# - header.autohide
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.top # back to top button
- navigation.path # adding path to the top
# - navigation.instant
# - navigation.prune
# - navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
# - navigation.top
- navigation.tracking # -- When anchor tracking is enabled, the URL in the address bar is automatically updated with the active anchor as highlighted.
# - navigation.sections # -- When sections are enabled, top-level sections are rendered as groups in the sidebar for viewports above 1220px, but remain as-is on mobile.
- search.highlight
- search.share
- search.suggest
# - toc.follow
#- toc.integrate # one toc on left only
- announce.dismiss
#logo: assets/images/ncar_cisl.png
#logo : https://arc.ucar.edu/assets/NCAR_CISL_logo_no_text-719d5fa40f0d6ed10edd1ce499a1cae632b17fc4126d9a6be748cf740bcf5d1c.png
logo : assets/images/CISL-contemp-logo-blue-square.png
#logo: https://raw.githubusercontent.com/negin513/hpc-docs-demo/main/assets/images/CISL-contemp-logo-blue-square.png
favicon : https://t0.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://arc.ucar.edu/knowledge_base/83853599
palette:
- scheme: cisl_default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: cisl_default_dark
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Poppins
code: Roboto Mono
highlightjs: true
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
#copyright: '<font color=#666>Content is available under </font><a href="https://creativecommons.org/licenses/by/2.5/" title="Attribution2.5">Attribution2.5</a> <font color=#666>unless otherwise noted.</font>'
copyright: '© 2023 UCAR, Licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons CC-BY-SA 4.0</a>.'
markdown_extensions:
- meta
- attr_list
- footnotes
- admonition
- md_in_html
- def_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- theme/.icons
- codehilite:
guess_lang: false
- toc:
permalink: true
title: "Page Outline"
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols:
fractions: false
- pymdownx.superfences
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.snippets:
url_download: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
prebuild_index: false
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
skip_classes:
- custom-skip-class-name
auto_caption: false
caption_position: bottom
- minify:
minify_html: true
- blog:
draft: true
blog_toc: true
post_url_format: "{slug}"
extra:
social:
- icon: material/home-circle
link: https://arc.ucar.edu/
- icon: material/help-circle
link: https://ithelp.ucar.edu/plugins/servlet/desk/site/rc
- icon: fontawesome/brands/github
link: https://github.com/NCAR
- icon: fontawesome/brands/slack
link: https://join.slack.com/t/ncarhpcusergroup/shared_invite/zt-1z00napom-SU0X8CzJWVY90C2GzRvUCg