mathypad_core/core/mod.rs
1//! Core abstractions for shared application state and logic
2
3pub mod file_ops;
4pub mod highlighting;
5pub mod state;
6
7pub use file_ops::{FileOperations, deserialize_lines, serialize_lines};
8pub use highlighting::{HighlightType, HighlightedSpan, highlight_expression};
9pub use state::MathypadCore;