mirror of
https://github.com/zensical/zensical.git
synced 2026-09-24 15:25:40 +00:00
refactor: migrate search MkDocs plugin replacement
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
This commit is contained in:
+198
@@ -0,0 +1,198 @@
|
||||
# Copyright (c) 2025-2026 Zensical and contributors
|
||||
|
||||
# SPDX-License-Identifier: MIT
|
||||
# All contributions are certified under the DCO
|
||||
|
||||
"""Integration tests for MkDocs-compatible search artifacts."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from typing import TYPE_CHECKING, Any
|
||||
|
||||
import zensical
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
_BUILD_OPTIONS: dict[str, Any] = {"clean": False, "strict": False}
|
||||
|
||||
|
||||
def _write_project(root: Path, *, plugins: str) -> Path:
|
||||
"""Create a representative search project."""
|
||||
docs = root / "docs"
|
||||
(docs / "guide").mkdir(parents=True)
|
||||
(docs / "index.md").write_text(
|
||||
"""\
|
||||
---
|
||||
tags:
|
||||
- alpha
|
||||
- beta
|
||||
---
|
||||
|
||||
# Landing
|
||||
|
||||
Intro with <small>fine print</small>.
|
||||
|
||||
## Overview
|
||||
|
||||
Overview body.
|
||||
""",
|
||||
encoding="utf-8",
|
||||
)
|
||||
(docs / "guide" / "topic.md").write_text(
|
||||
"""\
|
||||
---
|
||||
title: Metadata title
|
||||
tags:
|
||||
- guide
|
||||
---
|
||||
|
||||
Preface before a heading.
|
||||
|
||||
## Details
|
||||
|
||||
Detailed body.
|
||||
""",
|
||||
encoding="utf-8",
|
||||
)
|
||||
config = root / "mkdocs.yml"
|
||||
config.write_text(
|
||||
f"""\
|
||||
site_name: Search
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Guides:
|
||||
- Topic: guide/topic.md
|
||||
plugins:
|
||||
{plugins}
|
||||
""",
|
||||
encoding="utf-8",
|
||||
)
|
||||
return config
|
||||
|
||||
|
||||
def _read_index(root: Path) -> dict[str, Any]:
|
||||
"""Read the generated search index."""
|
||||
return json.loads((root / "site" / "search.json").read_text())
|
||||
|
||||
|
||||
def test_search_artifacts_match_mkdocs_contract(tmp_path: Path) -> None:
|
||||
"""Search output preserves ordering, page facts, and offline framing."""
|
||||
config = _write_project(
|
||||
tmp_path,
|
||||
plugins=' - search:\n separator: "[\\\\s-]+"\n - offline',
|
||||
)
|
||||
zensical.build(str(config), _BUILD_OPTIONS)
|
||||
|
||||
expected = {
|
||||
"config": {"lang": ["en"], "separator": "[\\s-]+"},
|
||||
"items": [
|
||||
{
|
||||
"location": "index.html",
|
||||
"level": 1,
|
||||
"title": "Landing",
|
||||
"text": "<p>Intro with <small>fine print</small>.</p>",
|
||||
"path": ["Landing"],
|
||||
"tags": ["alpha", "beta"],
|
||||
},
|
||||
{
|
||||
"location": "index.html#overview",
|
||||
"level": 2,
|
||||
"title": "Overview",
|
||||
"text": "<p>Overview body.</p>",
|
||||
"path": ["Landing"],
|
||||
"tags": ["alpha", "beta"],
|
||||
},
|
||||
{
|
||||
"location": "guide/topic.html",
|
||||
"level": 1,
|
||||
"title": "Metadata title",
|
||||
"text": "<p>Preface before a heading.</p>",
|
||||
"path": ["Guides", "Metadata title"],
|
||||
"tags": ["guide"],
|
||||
},
|
||||
{
|
||||
"location": "guide/topic.html#details",
|
||||
"level": 2,
|
||||
"title": "Details",
|
||||
"text": "<p>Detailed body.</p>",
|
||||
"path": ["Guides", "Metadata title"],
|
||||
"tags": ["guide"],
|
||||
},
|
||||
],
|
||||
}
|
||||
assert _read_index(tmp_path) == expected
|
||||
|
||||
compact = json.dumps(expected, separators=(",", ":"), ensure_ascii=False)
|
||||
assert (tmp_path / "site" / "search.js").read_text() == (
|
||||
f"var __index = {compact};"
|
||||
)
|
||||
|
||||
|
||||
def test_search_exclusion_and_disabled_output(tmp_path: Path) -> None:
|
||||
"""Excluded pages contribute no items and disabled search stays valid."""
|
||||
config = _write_project(tmp_path, plugins=" search:\n enabled: true")
|
||||
topic = tmp_path / "docs" / "guide" / "topic.md"
|
||||
topic.write_text(
|
||||
"""\
|
||||
---
|
||||
search:
|
||||
exclude: true
|
||||
---
|
||||
|
||||
# Hidden
|
||||
|
||||
Not indexed.
|
||||
""",
|
||||
encoding="utf-8",
|
||||
)
|
||||
zensical.build(str(config), _BUILD_OPTIONS)
|
||||
assert [item["title"] for item in _read_index(tmp_path)["items"]] == [
|
||||
"Landing",
|
||||
"Overview",
|
||||
]
|
||||
|
||||
all_excluded = tmp_path / "all-excluded"
|
||||
all_excluded.mkdir()
|
||||
config = _write_project(all_excluded, plugins=" - search")
|
||||
for page in (all_excluded / "docs").rglob("*.md"):
|
||||
page.write_text(
|
||||
"---\nsearch:\n exclude: true\n---\n\n# Hidden\n",
|
||||
encoding="utf-8",
|
||||
)
|
||||
zensical.build(str(config), _BUILD_OPTIONS)
|
||||
assert _read_index(all_excluded)["items"] == []
|
||||
|
||||
disabled = tmp_path / "disabled"
|
||||
disabled.mkdir()
|
||||
config = _write_project(
|
||||
disabled, plugins=" search:\n enabled: false"
|
||||
)
|
||||
zensical.build(str(config), _BUILD_OPTIONS)
|
||||
assert _read_index(disabled)["items"] == []
|
||||
|
||||
|
||||
def test_search_rebuild_replaces_changed_and_removed_pages(
|
||||
tmp_path: Path,
|
||||
) -> None:
|
||||
"""Successive builds do not retain stale page search facts."""
|
||||
config = _write_project(tmp_path, plugins=" - search")
|
||||
zensical.build(str(config), _BUILD_OPTIONS)
|
||||
|
||||
index = tmp_path / "docs" / "index.md"
|
||||
index.write_text("# Changed\n\nFresh body.\n", encoding="utf-8")
|
||||
(tmp_path / "docs" / "guide" / "topic.md").unlink()
|
||||
zensical.build(str(config), _BUILD_OPTIONS)
|
||||
|
||||
assert _read_index(tmp_path)["items"] == [
|
||||
{
|
||||
"location": "",
|
||||
"level": 1,
|
||||
"title": "Changed",
|
||||
"text": "<p>Fresh body.</p>",
|
||||
"path": ["Changed"],
|
||||
"tags": [],
|
||||
}
|
||||
]
|
||||
@@ -1,397 +0,0 @@
|
||||
# Copyright (c) 2025-2026 Zensical and contributors
|
||||
|
||||
# SPDX-License-Identifier: MIT
|
||||
# All contributions are certified under the DCO
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
# IN THE SOFTWARE.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from dataclasses import dataclass, field
|
||||
from html import escape
|
||||
from html.parser import HTMLParser
|
||||
from typing import TYPE_CHECKING, Any
|
||||
|
||||
from markdown import Extension
|
||||
from markdown.postprocessors import Postprocessor
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from markdown import Markdown
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Classes
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
@dataclass
|
||||
class SearchConfig:
|
||||
"""Configuration for the Search Markdown extension."""
|
||||
|
||||
keep: set[str] = field(default_factory=set)
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
class SearchProcessor(Postprocessor):
|
||||
"""Post processor to extract searchable content from the rendered HTML."""
|
||||
|
||||
name = "search"
|
||||
|
||||
def __init__(self, md: Markdown, config: SearchConfig) -> None:
|
||||
super().__init__(md)
|
||||
self.config = config
|
||||
self.data: list[dict[str, Any]] = []
|
||||
|
||||
def run(self, text: str) -> str:
|
||||
"""Process the rendered HTML and extract text length."""
|
||||
# Divide page content into sections
|
||||
parser = Parser()
|
||||
parser.feed(text)
|
||||
parser.close()
|
||||
|
||||
# Extract data from sections that are not excluded
|
||||
self.data = []
|
||||
for section in parser.data:
|
||||
if not section.is_excluded():
|
||||
# Compute title and text
|
||||
title = "".join(section.title).strip()
|
||||
content = "".join(section.text).strip()
|
||||
|
||||
# Store data for external access
|
||||
self.data.append(
|
||||
{
|
||||
"location": section.id,
|
||||
"level": section.level,
|
||||
"title": title,
|
||||
"text": content,
|
||||
"path": [],
|
||||
"tags": [],
|
||||
}
|
||||
)
|
||||
|
||||
# Return the original HTML unchanged
|
||||
return text
|
||||
|
||||
|
||||
class SearchExtension(Extension):
|
||||
"""Markdown extension for search indexing."""
|
||||
|
||||
name = "zensical.extensions.search"
|
||||
|
||||
def __init__(self, **kwargs: Any) -> None:
|
||||
self._kwargs = kwargs
|
||||
|
||||
def extendMarkdown(self, md: Markdown) -> None:
|
||||
"""Register the PostProcessor with Markdown."""
|
||||
config = SearchConfig(**self._kwargs)
|
||||
processor = SearchProcessor(md, config)
|
||||
md.postprocessors.register(processor, processor.name, 0)
|
||||
|
||||
|
||||
def makeExtension(**kwargs: Any) -> SearchExtension:
|
||||
"""Register Markdown extension."""
|
||||
return SearchExtension(**kwargs)
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
# HTML element
|
||||
class Element:
|
||||
"""HTML element.
|
||||
|
||||
An element with attributes, essentially a small wrapper object for the
|
||||
parser to access attributes in other callbacks than handle_starttag.
|
||||
"""
|
||||
|
||||
# Initialize HTML element
|
||||
def __init__(
|
||||
self, tag: str, attrs: dict[str, str | None] | None = None
|
||||
) -> None:
|
||||
self.tag = tag
|
||||
self.attrs = attrs or {}
|
||||
|
||||
# String representation
|
||||
def __repr__(self):
|
||||
return self.tag
|
||||
|
||||
# Support comparison (compare by tag only)
|
||||
def __eq__(self, other: object) -> bool:
|
||||
if isinstance(other, Element):
|
||||
return self.tag == other.tag
|
||||
return self.tag == other
|
||||
|
||||
# Support set operations
|
||||
def __hash__(self):
|
||||
return hash(self.tag)
|
||||
|
||||
# Check whether the element should be excluded
|
||||
def is_excluded(self) -> bool:
|
||||
return "data-search-exclude" in self.attrs
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
# HTML section
|
||||
class Section:
|
||||
"""HTML section.
|
||||
|
||||
A block of text with markup, preceded by a title (with markup), i.e., a
|
||||
headline with a certain level (h1-h6). Internally used by the parser.
|
||||
"""
|
||||
|
||||
# Initialize HTML section
|
||||
def __init__(self, el: Element, level: int, depth: int = 0) -> None:
|
||||
self.el = el
|
||||
self.depth: int | float = depth
|
||||
self.level = level
|
||||
|
||||
# Initialize section data
|
||||
self.text: list[str] = []
|
||||
self.title: list[str] = []
|
||||
self.id: str | None = None
|
||||
|
||||
# String representation
|
||||
def __repr__(self):
|
||||
if self.id:
|
||||
return f"{self.el.tag}#{self.id}"
|
||||
return self.el.tag
|
||||
|
||||
# Check whether the section should be excluded
|
||||
def is_excluded(self) -> bool:
|
||||
return self.el.is_excluded()
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
# HTML parser
|
||||
class Parser(HTMLParser):
|
||||
"""Section divider.
|
||||
|
||||
This parser divides the given string of HTML into a list of sections, each
|
||||
of which are preceded by a h1-h6 level heading. A white- and blacklist of
|
||||
tags dictates which tags should be preserved as part of the index, and
|
||||
which should be ignored in their entirety.
|
||||
"""
|
||||
|
||||
# Initialize HTML parser
|
||||
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
# Tags to skip
|
||||
self.skip: set[str | Element] = {
|
||||
"object", # Objects
|
||||
"script", # Scripts
|
||||
"style", # Styles
|
||||
}
|
||||
|
||||
# Current context and section
|
||||
self.context: list[Element] = []
|
||||
self.section: Section | None = None
|
||||
|
||||
# All parsed sections
|
||||
self.data: list[Section] = []
|
||||
|
||||
# Called at the start of every HTML tag
|
||||
def handle_starttag(
|
||||
self, tag: str, attrs: list[tuple[str, str | None]]
|
||||
) -> None:
|
||||
attrs_dict = dict(attrs)
|
||||
|
||||
# Ignore self-closing tags
|
||||
el = Element(tag, attrs_dict)
|
||||
if tag not in void:
|
||||
self.context.append(el)
|
||||
else:
|
||||
return
|
||||
|
||||
# Handle heading
|
||||
if tag in ([f"h{x}" for x in range(1, 7)]):
|
||||
depth = len(self.context)
|
||||
if "id" in attrs_dict:
|
||||
# Ensure top-level section
|
||||
if tag != "h1" and not self.data:
|
||||
self.section = Section(Element("hx"), 1, depth)
|
||||
self.data.append(self.section)
|
||||
|
||||
# Set identifier, if not first section
|
||||
self.section = Section(el, int(tag[1:2]), depth)
|
||||
if self.data:
|
||||
self.section.id = attrs_dict["id"]
|
||||
|
||||
# Append section to list
|
||||
self.data.append(self.section)
|
||||
|
||||
# Handle preface - ensure top-level section
|
||||
if not self.section:
|
||||
self.section = Section(Element("hx"), 1)
|
||||
self.data.append(self.section)
|
||||
|
||||
# Handle special cases to skip
|
||||
for key, value in attrs_dict.items():
|
||||
# Skip block if explicitly excluded from search
|
||||
if key == "data-search-exclude":
|
||||
self.skip.add(el)
|
||||
return
|
||||
|
||||
# Skip line numbers - see https://bit.ly/3GvubZx
|
||||
if key == "class" and value == "linenodiv":
|
||||
self.skip.add(el)
|
||||
return
|
||||
|
||||
# Render opening tag if kept
|
||||
if not self.skip.intersection(self.context) and tag in keep:
|
||||
# Check whether we're inside the section title
|
||||
data = self.section.text
|
||||
if self.section.el in self.context:
|
||||
data = self.section.title
|
||||
|
||||
# Append to section title or text
|
||||
data.append(f"<{tag}>")
|
||||
|
||||
# Called at the end of every HTML tag
|
||||
def handle_endtag(self, tag: str) -> None:
|
||||
if not self.context or self.context[-1] != tag:
|
||||
return
|
||||
|
||||
# Check whether we're exiting the current context, which happens when
|
||||
# a headline is nested in another element. In that case, we close the
|
||||
# current section, continuing to append data to the previous section,
|
||||
# which could also be a nested section – see https://bit.ly/3IxxIJZ
|
||||
assert self.section is not None # noqa: S101
|
||||
if self.section.depth > len(self.context):
|
||||
for section in reversed(self.data):
|
||||
if section.depth <= len(self.context):
|
||||
# Set depth to infinity in order to denote that the current
|
||||
# section is exited and must never be considered again.
|
||||
self.section.depth = float("inf")
|
||||
self.section = section
|
||||
break
|
||||
|
||||
# Remove element from skip list
|
||||
el = self.context.pop()
|
||||
if el in self.skip:
|
||||
if el.tag not in ["script", "style", "object"]:
|
||||
self.skip.remove(el)
|
||||
return
|
||||
|
||||
# Render closing tag if kept
|
||||
if not self.skip.intersection(self.context) and tag in keep:
|
||||
# Check whether we're inside the section title
|
||||
data = self.section.text
|
||||
if self.section.el in self.context:
|
||||
data = self.section.title
|
||||
|
||||
# Search for corresponding opening tag
|
||||
index = data.index(f"<{tag}>")
|
||||
for i in range(index + 1, len(data)):
|
||||
if not data[i].isspace():
|
||||
index = len(data)
|
||||
break
|
||||
|
||||
# Remove element if empty (or only whitespace)
|
||||
if len(data) > index:
|
||||
while len(data) > index:
|
||||
data.pop()
|
||||
|
||||
# Append to section title or text
|
||||
else:
|
||||
data.append(f"</{tag}>")
|
||||
|
||||
# Called for the text contents of each tag
|
||||
def handle_data(self, data: str) -> None:
|
||||
if self.skip.intersection(self.context):
|
||||
return
|
||||
|
||||
# Collapse whitespace in non-pre contexts
|
||||
if "pre" not in self.context:
|
||||
if not data.isspace():
|
||||
data = data.replace("\n", " ")
|
||||
else:
|
||||
data = " "
|
||||
|
||||
# Handle preface - ensure top-level section
|
||||
if not self.section:
|
||||
self.section = Section(Element("hx"), 1)
|
||||
self.data.append(self.section)
|
||||
|
||||
# Handle section headline
|
||||
if self.section.el in self.context:
|
||||
permalink = False
|
||||
for el in self.context:
|
||||
if el.tag == "a" and el.attrs.get("class") == "headerlink":
|
||||
permalink = True
|
||||
|
||||
# Ignore permalinks
|
||||
if not permalink:
|
||||
self.section.title.append(escape(data, quote=False))
|
||||
|
||||
# Collapse adjacent whitespace
|
||||
elif data.isspace():
|
||||
if (
|
||||
not self.section.text
|
||||
or not self.section.text[-1].isspace()
|
||||
or "pre" in self.context
|
||||
):
|
||||
self.section.text.append(data)
|
||||
|
||||
# Handle everything else
|
||||
else:
|
||||
self.section.text.append(escape(data, quote=False))
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Data
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
# Tags to keep
|
||||
keep = {
|
||||
"p",
|
||||
"code",
|
||||
"pre",
|
||||
"li",
|
||||
"ol",
|
||||
"ul",
|
||||
"small",
|
||||
"sub",
|
||||
"sup",
|
||||
}
|
||||
|
||||
# Tags that are self-closing
|
||||
void = {
|
||||
"area",
|
||||
"base",
|
||||
"br",
|
||||
"col",
|
||||
"embed",
|
||||
"hr",
|
||||
"img",
|
||||
"input",
|
||||
"link",
|
||||
"meta",
|
||||
"param",
|
||||
"source",
|
||||
"track",
|
||||
"wbr",
|
||||
}
|
||||
@@ -25,7 +25,7 @@ from __future__ import annotations
|
||||
|
||||
import re
|
||||
from datetime import date, datetime
|
||||
from typing import TYPE_CHECKING, Any
|
||||
from typing import Any
|
||||
|
||||
import yaml
|
||||
from markdown import Markdown
|
||||
@@ -35,10 +35,6 @@ from zensical.config import get_config
|
||||
from zensical.extensions.autorefs import set_autorefs_page
|
||||
from zensical.extensions.context import ContextExtension, Page
|
||||
from zensical.extensions.links import LinksExtension
|
||||
from zensical.extensions.search import SearchExtension
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from zensical.extensions.search import SearchProcessor
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Constants
|
||||
@@ -110,14 +106,11 @@ def render(content: str, path: str, url: str) -> dict:
|
||||
extension_configs=config["mdx_configs"],
|
||||
)
|
||||
|
||||
# Note: mkdocstrings and markdown-exec do not need to propagate
|
||||
# the links and search extensions to their inner Markdown instances:
|
||||
# their postprocessors run last and can see inner layer contents.
|
||||
# More importantly, inner layers *must not* run the links and search
|
||||
# extensions: the inner links treeprocessor would transform links once,
|
||||
# and the outer links postprocessor would transform them again.
|
||||
# The search postprocessor would run twice for generated content,
|
||||
# incurring a performance cost.
|
||||
# Note: mkdocstrings and markdown-exec do not need to propagate the links
|
||||
# extension to their inner Markdown instances. Its postprocessor runs last
|
||||
# and can see inner layer contents. More importantly, inner layers *must
|
||||
# not* run the extension: the inner treeprocessor would transform links
|
||||
# once, and the outer postprocessor would transform them again.
|
||||
|
||||
# Register links extension, which is equivalent to MkDocs' path resolution
|
||||
# Markdown extension. This is a bandaid, until we move this to Rust
|
||||
@@ -126,10 +119,6 @@ def render(content: str, path: str, url: str) -> dict:
|
||||
)
|
||||
links.extendMarkdown(md)
|
||||
|
||||
# Register search extension, which extracts text for search indexing
|
||||
search_extension = SearchExtension()
|
||||
search_extension.extendMarkdown(md)
|
||||
|
||||
# Inform markdown-exec that it runs through Zensical.
|
||||
try:
|
||||
import markdown_exec # noqa: PLC0415 # ty:ignore[unresolved-import]
|
||||
@@ -141,11 +130,6 @@ def render(content: str, path: str, url: str) -> dict:
|
||||
# Convert content to HTML
|
||||
content = md.convert(content)
|
||||
|
||||
# Obtain search index data, unless page is excluded
|
||||
search_processor: SearchProcessor = md.postprocessors["search"]
|
||||
if meta.get("search", {}).get("exclude", False):
|
||||
search_processor.data = []
|
||||
|
||||
# Sanitize metadata before passing it to Rust
|
||||
meta = {k: _sanitize(v) for k, v in meta.items()}
|
||||
|
||||
@@ -154,7 +138,6 @@ def render(content: str, path: str, url: str) -> dict:
|
||||
"meta": meta,
|
||||
"title": "",
|
||||
"content": content,
|
||||
"search": search_processor.data,
|
||||
"toc": [_convert_toc(item) for item in getattr(md, "toc_tokens", [])],
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user