ultron-web 0.3.0

Ultron editor variant exposed as a web application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![deny(warnings)]
pub use sauron;
use sauron::*;
pub use ultron_core::{editor, nalgebra, Options, SelectionMode, TextBuffer};
pub use web_editor::custom_element::{attributes, register, ultron_editor, WebEditorCustomElement};
pub use web_editor::{Command, MouseCursor, WebEditor, COMPONENT_NAME};

pub use ultron_core;

pub(crate) mod context_menu;
pub(crate) mod util;
pub mod web_editor;