File: mkdocs.yml

package info (click to toggle)
python-crc 7.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 468 kB
  • sloc: python: 1,488; makefile: 5
file content (99 lines) | stat: -rw-r--r-- 2,487 bytes parent folder | download | duplicates (2)
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
site_name: CRC
site_url: https://nicoretti.github.io/crc/
repo_name: nicoretti/crc
repo_url: https://github.com/Nicoretti/crc

nav:
  - "index.md"
  # Configurations will be gernerated on the fly,
  # for more details see docs/scripts/configurations.py
  - "configurations.md"
  - API:
    - "api/calculator.md"
    - "api/configuration.md"
    - "api/crc8.md"
    - "api/crc16.md"
    - "api/crc32.md"
    - "api/crc64.md"
    - "api/abstract_register.md"
    - "api/basic_register.md"
    - "api/register.md"
    - "api/table_based_register.md"
  - "cli.md"
  - Development:
      - "development/setup.md"
      - "development/release.md"
  - Changelog:
      - "changelog/unreleased.md"
      - "changelog/changes_7.1.0.md"
      - "changelog/changes_7.0.0.md"
      - "changelog/changes_6.1.2.md"
      - "changelog/changes_6.1.1.md"
      - "changelog/changes_6.1.0.md"
      - "changelog/changes_6.0.0.md"
      - "changelog/changes_5.0.0.md"
      - "changelog/changes_4.3.0.md"
      - "changelog/changes_4.2.0.md"
      - "changelog/changes_4.1.0.md"
      - "changelog/changes_4.0.0.md"
      - "changelog/changes_3.0.1.md"
      - "changelog/changes_3.0.0.md"
      - "changelog/changes_2.0.0.md"
  - "contributors.md"
theme:
  name: material
  icon:
    repo: fontawesome/brands/github
  palette:
    - media: '(prefers-color-scheme: light)'
      scheme: default
      primary: lime
      accent: amber
      toggle:
        icon: material/toggle-switch
        name: Switch to light mode
    - media: '(prefers-color-scheme: dark)'
      scheme: slate
      primary: lime
      accent: amber
      toggle:
        icon: material/toggle-switch-off-outline
        name: Switch to dark mode
  features:
    - search.suggest
    - search.highlight
    - content.tabs.link
    - content.code.copy
  font: false
copyright: >
  Copyright © 2022 Nicola Coretti
markdown_extensions:
  - admonition
  - pymdownx.details
  - pymdownx.highlight:
      use_pygments: true
  - pymdownx.superfences
  - attr_list
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
  - pymdownx.tabbed:
      alternate_style: true
watch:
  - .
  - "../src"


plugins:
- search
- gen-files:
    scripts:
      - "scripts/configurations.py"
- autorefs
- mkdocstrings:
    default_handler: python
    handlers:
      python:
        paths: ["../src"]
        options:
          show_source: false