//! Thread-local PDF file path for native text extraction.
//!
//! The current PDF file path is communicated via a thread-local to avoid
//! threading it through every function signature in the extraction pipeline.
use RefCell;
use PathBuf;
thread_local!
/// Set the current PDF file path for native text extraction.
/// Call this before entering the markdown pipeline.
pub