PageIndex/pageindex/page_index_md.py
Ray 7b23cd9f8c fix: drop deprecation warnings from the top-level module shims
Same adjudication as the client methods (42d57b6): pageindex.utils is
the documented 0.2.8 location, and the top-level modules are permanent
compatibility surface — "will be removed in a future release" was not
true. The shims stay; only the import-time warnings go.
2026-07-24 01:08:03 +08:00

9 lines
511 B
Python

# pageindex/page_index_md.py
# Compatibility shim. The Markdown indexing pipeline now lives in
# pageindex/index/page_index_md.py (the single source of truth). This module
# re-exports it so legacy imports keep working.
#
# The canonical md_to_tree coerces legacy 'yes'/'no' string flags itself (a
# bare 'no' would otherwise be truthy) — this shim used to duplicate that
# coercion in its own wrapper; now it just re-exports the canonical function.
from .index.page_index_md import * # noqa: F401,F403,E402