Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
96 lines (96 loc) · 2.63 KB

File metadata and controls

96 lines (96 loc) · 2.63 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# Set strict to true to turn warnings into errors to catch warnings within CI.
strict: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
theme:
name: material
# By default, fonts are pulled from Google on the Internet. To support offline usage, this is
# disabled.
font: false
palette:
scheme: slate
primary: green
accent: yellow
icon:
logo: material/math-integral-box
# GitHub specific.
repo: fontawesome/brands/github
favicon: static/math-integral-box.png
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.footnote.tooltips
- content.tabs.link
- content.tooltips
- navigation.indexes
- navigation.expand
- navigation.footer
- navigation.path
- navigation.instant
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
markdown_extensions:
- abbr
- admonition
- footnotes
- pymdownx.details
- pymdownx.keys
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- md_in_html
extra_css:
- static/stylesheets/extra.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/johnthagen/python-blueprint
plugins:
- search
- offline:
enabled: !ENV [MKDOCS_MATERIAL_OFFLINE, false]
- mkdocstrings:
handlers:
python:
options:
show_if_no_docstring: true
show_signature_annotations: true
# Autodoc configuration.
# https://github.com/tlambert03/mkdocs-api-autonav#configuration
- api-autonav:
modules: ["src/fact"]
# This plugin is used to validate URLs (including anchors).
- htmlproofer:
# This is not enabled by default because this requires network I/O, so it is inherently not
# exactly reproducible. For larger projects, this can also slow local build times.
validate_external_urls: !ENV [HTMLPROOFER_VALIDATE_EXTERNAL_URLS, false]
raise_error: True
watch:
# Watch src/ directory to reload on changes to docstrings for mkdocstrings plugin.
- src
site_name: fact
copyright: Copyright © 2018-2026 John Hagen
# GitHub Specific Configuration.
repo_name: python-blueprint
repo_url: https://github.com/johnthagen/python-blueprint
edit_uri: edit/main/docs/user_guide/docs/
nav:
- index.md
- Third Party Licenses:
- licenses/license_report.md
Morty Proxy This is a proxified and sanitized view of the page, visit original site.