mathtex-editor-core 0.1.0

Headless core of the mathtex structural math editor: model, operations, navigation, selection, IR matching
Documentation
//! `mathtex-editor-core` is the headless guest core for model, command, host, and editor types.
#![allow(dead_code, unused_variables, unused_imports)]

pub mod command;
pub mod doc;
pub mod editor;
pub mod export;
pub mod host;
pub mod matcher;
pub mod menu;
pub mod model;
pub mod nav;
pub mod ops;
pub mod selection;

pub use command::{Command, CommandResult};
pub use doc::{DocFragment, Document, NodeDoc};
pub use editor::Editor;
pub use host::{Host, RenderOutput};
pub use menu::{MenuItem, MenuView};
pub use model::{Cursor, Kind, Node, NodeId, Seq, SeqId, Selection, Tree};