1// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops> 2// SPDX-License-Identifier: MIT OR Apache-2.0 3 4mod text; 5pub use text::TextLoader; 6 7#[cfg(feature = "pdf")] 8mod pdf; 9#[cfg(feature = "pdf")] 10pub use pdf::PdfLoader;