-
-
Notifications
You must be signed in to change notification settings - Fork 607
Expand file tree
/
Copy pathmkdocs.yml
More file actions
51 lines (48 loc) · 1.3 KB
/
mkdocs.yml
File metadata and controls
51 lines (48 loc) · 1.3 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
46
47
48
49
50
51
site_description: |
'A fast, efficient Python library for generating country, province, and state-specific sets '
'of holidays on the fly. It aims to make determining whether a specific date is a holiday as '
'fast and flexible as possible.'
site_author: 'Vacanza Team'
site_name: 'holidays'
theme:
name: readthedocs
highlightjs: true
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
inherited_members: false
filters:
- '!^_'
- '!CountryHoliday'
members_order: source
merge_init_into_class: true
show_if_no_docstring: true
show_root_heading: true
show_signature: true
show_source: false
- gen-files:
scripts:
- scripts/docs/gen_ref_pages.py
- scripts/docs/gen_summary.py
- scripts/docs/gen_changelog.py
- scripts/docs/gen_copyright.py
- scripts/docs/gen_index.py
- literate-nav:
nav_file: SUMMARY.md
markdown_extensions:
- markdown_include.include:
base_path: docs
- admonition
- pymdownx.superfences
- toc:
permalink: ''
extra_css:
- css/custom.css
extra_javascript:
- js/custom.js
- js/copyright.js