-
-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathmkdocs.local.yml
More file actions
45 lines (39 loc) · 1.9 KB
/
Copy pathmkdocs.local.yml
File metadata and controls
45 lines (39 loc) · 1.9 KB
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
# =========================================================================
# Ceedling - Test-Centered Build System for C
# ThrowTheSwitch.org
# Copyright (c) 2010-26 Mike Karlesky, Mark VanderVoord, & Greg Williams
# SPDX-License-Identifier: MIT
# =========================================================================
# mkdocs uses a simple overwrite merge -- must rewrite entire sections to make small changes.
INHERIT: mkdocs.yml
# Produce index.html files with internal links for local HTML bundle.
# The default is to produce directory URLs where a web server silently serves a directory index.html file
use_directory_urls: false
# Blank — prevents absolute URLs being baked in that point back to the live site.
site_url: ''
site_dir: site-local
# Material theme configuration
theme:
name: material
favicon: assets/images/favicon.png
palette:
- scheme: default
primary: green
accent: deep_purple
features:
# No navigation.instant for local site
- navigation.tabs # Top-level nav rendered as tabs
- navigation.sections # Sections rendered as groups in left sidebar
- navigation.top # Back-to-top button
- navigation.indexes # Section index pages (first item in section = section landing page)
- navigation.path # Breadcrumb trail below page title
- search.suggest # Autocomplete suggestions in search
- search.highlight # Highlight search terms on result pages
- content.code.copy # Copy button on code blocks
- content.code.annotate # Inline annotation support in code blocks
extra_css:
- assets/stylesheets/styling.css # Custom style tweaks
- assets/stylesheets/admonitions.css # Custom admonition types
- assets/stylesheets/fixes-local.css # Local site styling overrides and layout fixes
# Remove all the optional plugins that we run on the server, including "search" and "mike"
plugins: []