mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-07-24 21:41:04 +02:00
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.
9 lines
511 B
Python
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
|