This commit is contained in:
Kovid Goyal
2026-07-04 09:19:56 +05:30
parent a65b4c70a7
commit 89781759e4
2 changed files with 6 additions and 2 deletions

View File

@@ -17,7 +17,11 @@ from functools import lru_cache, partial
from typing import Any, Callable, Dict, Iterable, Iterator, List, Tuple
from docutils import nodes
from docutils.parsers.rst.roles import normalize_options
try:
from docutils.parsers.rst.roles import normalize_options
except ImportError:
from docutils.parsers.rst.roles import set_classes as normalize_options # type: ignore
from pygments.lexer import RegexLexer
from pygments.lexer import bygroups as untyped_bygroups
from pygments.token import Comment, Error, Keyword, Literal, Name, Number, String, Whitespace