File: mkdocs.yml

package info (click to toggle)
changie 1.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,068 kB
  • sloc: makefile: 40; ruby: 38; javascript: 32
file content (117 lines) | stat: -rw-r--r-- 3,296 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
107
108
109
110
111
112
113
114
115
116
117
site_name: Changie
site_url: https://changie.dev
site_author: Ronnie Smith
site_description: >-
  Changie is a file based changelog management tool.

edit_uri: edit/main/docs
repo_url: https://github.com/miniscruff/changie
repo_name: miniscruff/changie
extra:
  current_version: v1.18.0
  social:
    - icon: fontawesome/brands/bluesky
      link: https://bsky.app/profile/miniscruff.bsky.social
    - icon: fontawesome/brands/github
      link: https://github.com/miniscruff
    - icon: fontawesome/brands/docker
      link: https://github.com/miniscruff/changie/pkgs/container/changie
theme:
  logo: static/logo.svg
  favicon: static/favicon.png
  name: material
  palette:
    # Palette toggle for light mode
    - scheme: default
      primary: white
      accent: green
      media: "(prefers-color-scheme: light)"
      toggle:
        icon: material/weather-night
        name: Switch to dark mode

    # Palette toggle for dark mode
    - scheme: slate
      primary: black
      accent: green
      media: "(prefers-color-scheme: dark)"
      toggle:
        icon: material/weather-sunny
        name: Switch to light mode
  features:
    - navigation.instant
    - navigation.tracking
    - navigation.tabs
    - navigation.sections
    - navigation.indexes
    - navigation.top
    - search.suggest
    - content.code.copy
    - content.code.annotate 
    - content.action.edit
    - content.action.view
  icon:
    repo: simple/github
plugins:
  - search
  - macros:
      j2_variable_start_string: "<<"
      j2_variable_end_string: ">>"
  - social:
      cards_layout_options:
        title: Changie Documentation
        description: Changie is a file based changelog management tool.

markdown_extensions:
  - pymdownx.highlight:
      anchor_linenums: true
      line_spans: __span
      pygments_lang_class: true
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.superfences:
      custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
  - pymdownx.details
  - pymdownx.inlinehilite
  - pymdownx.snippets
  - pymdownx.superfences
  - attr_list

nav:
  - Home: index.md
  - Guide:
      - guide/index.md
      - Installation: guide/installation.md
      - Quick Start: guide/quick_start.md
      - Backup: guide/backup.md
      - Upgrade: guide/upgrade.md
      - Changelog: guide/CHANGELOG.md
  - Integrations:
      - integrations/index.md
      - NodeJS: integrations/nodejs.md
      - Goreleaser: integrations/goreleaser.md
      - Release Trigger: integrations/release_trigger.md
      - yq: integrations/yq.md
      - Continuous Integration: integrations/ci.md
  - Config:
      - config/index.md
  - CLI:
      - cli/changie.md
      - cli/changie_batch.md
      - cli/changie_completion.md
      - cli/changie_completion_bash.md
      - cli/changie_completion_fish.md
      - cli/changie_completion_powershell.md
      - cli/changie_completion_zsh.md
      - cli/changie_diff.md
      - cli/changie_init.md
      - cli/changie_latest.md
      - cli/changie_merge.md
      - cli/changie_new.md
      - cli/changie_next.md