Files
website-v2/core/constants.py
daveoconnor 59b9ae3167 Added wrappers for docs (#1322) (#1348)
For now this will wrap based on the view with the assumption, based on
our discussions, that User Guide docs are based on antora and lib docs
are asciidocs. Should there turn out to be edge cases we will make some
adjustments.

Generated classes will be `source-docs-antora` and
`source-docs-asciidoc`.
2024-10-10 13:02:47 -07:00

7 lines
99 B
Python

from enum import Enum
class SourceDocType(Enum):
ASCIIDOC = "asciidoc"
ANTORA = "antora"