mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Since #12168, HTML files are now XML compliant, hence ``html5lib`` is no more needed as a testing dependencies.
9 lines
172 B
Python
9 lines
172 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from typing import Final
|
|
|
|
FIGURE_CAPTION: Final[str] = ".//figure/figcaption/p"
|