File: mkdocs.yml

package info (click to toggle)
ledger2beancount 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 808 kB
  • sloc: perl: 1,795; sh: 147; makefile: 22
file content (47 lines) | stat: -rw-r--r-- 1,158 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
---
site_name: ledger2beancount
site_description: Ledger to Beancount converter
site_url: https://ledger2beancount.readthedocs.io/
repo_url: https://github.com/beancount/ledger2beancount
site_author: Stefano Zacchiroli, Martin Michlmayr
use_directory_urls: true

theme:
    name: readthedocs
    custom_dir: themes
    highlightjs: true
    hljs_languages:
        - shell
        - text
        - yaml

nav:
    - Introduction: index.md
    - Getting started:
          - Features: features.md
          - Compatibility: compatibility.md
          - Installation: installation.md
          - Usage: usage.md
          - Configuration: configuration.md
    - Guides:
          - User guide: guide.md
          - Limitations: limitations.md
    - About:
          - Release notes: changelog.md
          - Bugs and contributions: contributing.md
          - Authors and contributors: authors.md
          - License and copyright: license.md

markdown_extensions:
    - toc:
          permalink: 
          baselevel: 2
    - def_list

plugins:
    - search
    - exclude:
          glob:
              - "*.1"
              - "*.5"
              - "*.scd"