File: mkdocs.yml

package info (click to toggle)
python-holidays 0.86-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,296 kB
  • sloc: python: 117,830; javascript: 85; makefile: 59
file content (50 lines) | stat: -rw-r--r-- 1,304 bytes parent folder | download
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
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
  - toc:
      permalink: ''

extra_css:
  - css/custom.css
extra_javascript:
  - js/custom.js
  - js/copyright.js