The indent trigger was using .abs() which fired on both increased indent (non-indented → indented) AND decreased indent (indented → non-indented). This caused drop-cap style paragraphs (indented first line, flush-left continuation) to incorrectly split into two blocks. Per plan Phase 4.4 heuristic #2, indent change should only trigger when the current line is MORE indented (to the right, larger x0) than the block average - i.e., a new paragraph starting after non-indented text. It should NOT trigger for decreased indent (first line indented, rest flush-left). Fix: Remove .abs() and only check if line_x0 - block_avg_x0 > threshold. Tests: - test_indented_first_line_new_block: PASS (non-indented → indented splits) - test_indented_first_line_of_paragraph_not_split: PASS (drop cap stays together) - All 179 line module tests: PASS
31 lines
854 B
Python
31 lines
854 B
Python
#!/usr/bin/env python3
|
|
"""Count public API coverage for pdftract-core - focus on re-exports in lib.rs."""
|
|
|
|
import re
|
|
from pathlib import Path
|
|
|
|
LIB_RS = Path("crates/pdftract-core/src/lib.rs")
|
|
|
|
# Parse lib.rs to find re-exports and public modules
|
|
with open(LIB_RS) as f:
|
|
content = f.read()
|
|
|
|
# Public modules
|
|
pub_mods = re.findall(r'pub mod (\w+);', content)
|
|
print(f"Public modules ({len(pub_mods)}):")
|
|
for mod in pub_mods:
|
|
print(f" - {mod}")
|
|
|
|
# Re-exports
|
|
print("\nRe-exports:")
|
|
# pub use crate_name::item
|
|
re_exports = re.findall(r'pub use ([^:]+::(\w+(?:::\w+)*))', content)
|
|
for _, item in re_exports:
|
|
print(f" - {item}")
|
|
|
|
# Count unique public types from re-exports
|
|
print("\nKey public types to document:")
|
|
types = re.findall(r'pub use [^:]+::(\w+)', content)
|
|
unique_types = sorted(set(types))
|
|
for t in unique_types:
|
|
print(f" - {t}")
|