Skip to main content

mathtex_editor_core/
lib.rs

1//! `mathtex-editor-core` is the headless guest core for model, command, host, and editor types.
2#![allow(dead_code, unused_variables, unused_imports)]
3
4pub mod command;
5pub mod doc;
6pub mod editor;
7pub mod export;
8pub mod host;
9pub mod matcher;
10pub mod menu;
11pub mod model;
12pub mod nav;
13pub mod ops;
14pub mod selection;
15
16pub use command::{Command, CommandResult};
17pub use doc::{DocFragment, Document, NodeDoc};
18pub use editor::Editor;
19pub use host::{Host, RenderOutput};
20pub use menu::{MenuItem, MenuView};
21pub use model::{Cursor, Kind, Node, NodeId, Seq, SeqId, Selection, Tree};