conf.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Configuration file for the Sphinx documentation builder.
  2. #
  3. # For the full list of built-in configuration values, see the documentation:
  4. # https://www.sphinx-doc.org/en/master/usage/configuration.html
  5. # -- Project information -----------------------------------------------------
  6. # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
  7. project = 'MULTI-PARTY MEETING TRANSCRIPTION CHALLENGE 2.0'
  8. copyright = '2023, Speech Lab, Alibaba Group; ASLP Group, Northwestern Polytechnical University'
  9. author = 'Speech Lab, Alibaba Group; Audio, Speech and Language Processing Group, Northwestern Polytechnical University'
  10. extensions = [
  11. "nbsphinx",
  12. "sphinx.ext.autodoc",
  13. 'sphinx.ext.napoleon',
  14. 'sphinx.ext.viewcode',
  15. "sphinx.ext.mathjax",
  16. "sphinx.ext.todo",
  17. # "sphinxarg.ext",
  18. "sphinx_markdown_tables",
  19. # 'recommonmark',
  20. 'sphinx_rtd_theme',
  21. 'myst_parser',
  22. ]
  23. myst_enable_extensions = [
  24. "colon_fence",
  25. "deflist",
  26. "dollarmath",
  27. "html_image",
  28. ]
  29. myst_heading_anchors = 2
  30. myst_highlight_code_blocks=True
  31. myst_update_mathjax=False
  32. templates_path = ['_templates']
  33. source_suffix = [".rst", ".md"]
  34. pygments_style = "sphinx"
  35. html_theme = "sphinx_rtd_theme"