Skip to main content

pdforg_writer/
lib.rs

1//! pdf-writer — Word processor engine
2//!
3//! Implements the Operational Transform (OT) engine for conflict-free concurrent editing,
4//! tracked changes, and the document layout model.
5
6pub mod ot;
7pub mod tracked_changes;
8pub mod layout;
9
10pub use ot::*;
11pub use tracked_changes::*;
12pub use layout::*;