site_name: MkDocs
site_url: https://www.mkdocs.org/
site_description: Project documentation with Markdown.
site_author: MkDocs Team

repo_url: https://gitlab-forge.din.developpement-durable.gouv.fr/pub/numeco/mkdocs-dsfr/
edit_uri: blob/main/docs/


theme:
    name: mkdocs
    button_edit_label: Éditer dans Gitlab Forge
    locale: fr
    custom_dir: 'dsfr/'
    menulateral: true
    intitule: "Intitulé"
    include_search_page: true
    show_revision_date: true
    header:
        titre: "Titre"
        sous_titre: "Sous-titre"
    footer:
        description: "Description à modifier"
        links:
            - name: legifrance.gouv.fr
              url: https://legifrance.gouv.fr
            - name: gouvernement.fr
              url: https://gouvernement.fr
            - name: service-public.fr
              url: https://service-public.fr
            - name: data.gouv.fr
              url: https://data.gouv.fr


nav:
    - Home: index.md
    - Getting Started: getting-started.md
    - User Guide: user-guide/
    - Developer Guide: dev-guide/
    - About:
        - Release Notes: about/release-notes.md
        - Contributing: about/contributing.md
        - License: about/license.md

extra_css:
    - css/extra.css

markdown_extensions:
    - toc:
        permalink: ""
    - attr_list
    - def_list
    - tables
    - pymdownx.highlight:
        use_pygments: true
    - pymdownx.snippets
    - pymdownx.superfences
    - mdx_gh_links:
        user: mkdocs
        repo: mkdocs
    - mkdocs-click

copyright: Copyright &copy; 2014 <a href="https://twitter.com/_tomchristie">Tom Christie</a>, Maintained by the <a href="/about/release-notes/#maintenance-team">MkDocs Team</a>.

plugins:
    - search:
        lang: fr
    - callouts
    - redirects:
        redirect_maps:
            user-guide/plugins.md: dev-guide/plugins.md
            user-guide/custom-themes.md: dev-guide/themes.md
            user-guide/styling-your-docs.md: user-guide/choosing-your-theme.md
    - autorefs
    - literate-nav:
        nav_file: README.md
        implicit_index: true
    - mkdocstrings:
        handlers:
          python:
            options:
              docstring_section_style: list
              members_order: source
              show_root_heading: true
              show_source: false
              show_signature_annotations: true
    - git-revision-date-localized

watch:
    - mkdocs