mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
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`.
7 lines
99 B
Python
7 lines
99 B
Python
from enum import Enum
|
|
|
|
|
|
class SourceDocType(Enum):
|
|
ASCIIDOC = "asciidoc"
|
|
ANTORA = "antora"
|