prosemirror 0.5.1

A Rust implementation of ProseMirror's document model and transform pipeline
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Language-agnostic binding layer.
//!
#![allow(missing_docs)]
//!
//! This module provides binding-neutral wrappers (prefixed `B`) around the
//! prosemirror model and transform types.  Each language binding (Node.js,
//! Python, future WASM, etc.) holds these wrappers internally and provides
//! only the FFI-specific glue (attribute macros, error type translation,
//! callback adaptation).
//!
//! Adding a new method here makes it available to every binding with a
//! single one-line forwarding wrapper.

pub mod model;
pub mod transform;