Matrix Docker Ansible eploy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

44 rindas
1.6 KiB

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