Skip to main content

xfa_layout_engine/
lib.rs

1#![warn(missing_docs)]
2//! XFA Layout Engine — Box Model and pagination.
3//!
4//! Implements the XFA layout algorithms from XFA 3.3 §4 and §8,
5//! including positioned/flowed layout, content splitting, and pagination.
6//!
7//! This crate's public API is panic-free. Errors are returned as `Result<T, LayoutError>`.
8
9pub mod error;
10pub mod form;
11pub mod layout;
12#[cfg(not(target_arch = "wasm32"))]
13pub mod scripting;
14pub mod text;
15pub mod types;