Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

49 řádky
1.8 KiB

  1. # SPDX-FileCopyrightText: 2024 Slavi Pantaleev <slavi@devture.com>
  2. # SPDX-FileCopyrightText: 2024 Suguru Hirahara <acioustick@noreply.codeberg.org>
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. # Configuration file for the Sphinx documentation builder.
  6. # Also see the `i18n/` directory.
  7. #
  8. # For the full list of built-in configuration values, see the documentation:
  9. # https://www.sphinx-doc.org/en/master/usage/configuration.html
  10. # -- Project information -----------------------------------------------------
  11. # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
  12. project = 'matrix-docker-ansible-deploy'
  13. copyright = '2018-%Y, Slavi Pantaleev, Aine Etke, MDAD community members'
  14. author = 'Slavi Pantaleev, Aine Etke, MDAD community members'
  15. # -- General configuration ---------------------------------------------------
  16. # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
  17. needs_sphinx = '8.1' # For the copyright year placeholder (%Y). Specified with pyproject.toml as well.
  18. extensions = [
  19. 'myst_parser',
  20. 'sphinx_markdown_builder'
  21. ]
  22. myst_gfm_only = True
  23. myst_heading_anchors = 4 # https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#auto-generated-header-anchors
  24. master_doc = 'README'
  25. source_suffix = {'.md': 'markdown'}
  26. # Though the default config file advocates exclude_patterns, it is straightforward for us to use include_patterns to select directories explicitly.
  27. include_patterns = [
  28. 'docs/*',
  29. 'i18n/README.md',
  30. '*.md',
  31. ]
  32. locale_dirs = ['i18n/locales/']
  33. gettext_compact = False
  34. # -- Options for HTML output -------------------------------------------------
  35. # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
  36. # html_theme = 'alabaster'
  37. # html_static_path = ['_static']