File: mkdocs.yml

package info (click to toggle)
python-django-pgtrigger 4.15.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 956 kB
  • sloc: python: 4,412; makefile: 114; sh: 8; sql: 2
file content (106 lines) | stat: -rw-r--r-- 2,926 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
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
100
101
102
103
104
105
106
site_name: django-pgtrigger
docs_dir: docs

repo_name: AmbitionEng/django-pgtrigger
repo_url: https://github.com/AmbitionEng/django-pgtrigger

plugins:
  - search
  - mkdocstrings:
      handlers:
        python:
          import:
            - file:///usr/share/doc/python3.11/html/objects.inv
            - file:///usr/share/doc/python-installer-doc/html/objects.inv
          options:
            docstring_options:
              ignore_init_summary: true
            line_length: 80
            heading_level: 3
            merge_init_into_class: true
            separate_signature: true
            show_root_heading: true
            show_root_full_path: true
            show_root_members_full_path: true
            show_signature_annotations: true
            show_symbol_type_heading: true
            show_symbol_type_toc: true
            signature_crossrefs: true

markdown_extensions:
  # For admonitions
  - admonition
  - pymdownx.details
  - pymdownx.superfences
  - pymdownx.highlight:
      anchor_linenums: true
      line_spans: __span
      pygments_lang_class: true
  - pymdownx.inlinehilite
  - pymdownx.snippets
  - pymdownx.superfences
  - tables
  - pymdownx.superfences:
      custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format
  - toc:
      permalink: true

theme:
  custom_dir: docs/overrides
  name: material
  logo: static/dark_logo.png
  favicon: static/light_logo.png
  features:
    - content.code.copy
    - navigation.footer
    - navigation.path
    - navigation.sections
    - navigation.tracking
    - search.suggest
    - search.highlight
    - toc.follow
  palette:
    - media: "(prefers-color-scheme: light)"
      scheme: default
      primary: custom
      toggle:
        icon: material/brightness-7
        name: Switch to dark mode
    - media: "(prefers-color-scheme: dark)"
      scheme: slate
      primary: custom
      toggle:
        icon: material/brightness-4
        name: Switch to light mode

extra_css:
  - css/mkdocstrings.css
  - css/mkdocs-material.css

nav:
  - Overview: index.md
  - Installation: installation.md
  - Getting Started:
      - Basics: basics.md
      - Trigger Cookbook: cookbook.md
      - Conditional Triggers: conditional.md
      - Ignoring Execution: ignoring_triggers.md
  - Advanced Functionality:
      - Statement-Level Triggers: statement.md
      - Deferrable Triggers: deferrable.md
      - Installation Edge Cases: advanced_installation.md
      - Non-Standard Database Setups: advanced_db.md
  - Help:
      - Frequently Asked Questions: faq.md
      - Troubleshooting: troubleshooting.md
      - Upgrading: upgrading.md
      - Further Reading: further_reading.md
  - API:
      - Settings: settings.md
      - Commands: commands.md
      - Module: module.md
      - Release Notes: release_notes.md
      - Contributing Guide: contributing.md