taino-edit — umbrella crate for the taino-edit WYSIWYG editor framework.
Native Rust, reactive-first rich-text editing. No JavaScript bridge —
unlike leptos-tiptap, this is pure Rust at runtime.
This crate re-exports the workspace pieces behind feature flags so consumers pick exactly what they need:
| Feature | Re-exports |
|---|---|
| (always) | [core] — document model, transforms, state, commands |
extensions |
[extensions] — bold, italic, heading, … |
dom |
[dom] — the contenteditable bridge |
leptos |
[leptos] — the Leptos adapter (implies dom+extensions) |
dioxus |
[dioxus] — placeholder, reserved for v0.2 |
No adapter is enabled by default; choose one, e.g.
taino-edit = { version = "0.1", features = ["leptos"] }.
Status: pre-implementation — see ROADMAP.md.