Skip to main content

markless/editor/
mod.rs

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.
5
6mod buffer;
7
8pub use buffer::{Cursor, Direction, EditorBuffer};