1//! Lightweight editor module for in-place markdown editing.
2//!
3//! Provides a rope-backed text buffer with cursor management,
4//! designed for integration into the TEA architecture.
56mod buffer;
78pub use buffer::{Cursor, Direction, EditorBuffer};