sphinx/tests/test_builders/xpath_data.py
Bénédikt Tran 885818bb7f
[tests] move utilities and static data into dedicated modules and remove `html5lib` (#12173)
Since #12168, HTML files are now XML compliant, hence ``html5lib`` is no more needed as a testing dependencies.
2024-03-25 11:03:44 +01:00

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"