prosemirror 0.4.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
16
17
#![warn(missing_docs)]
//! # The ProseMirror API
//!
//! This crate is a re-implementation of the [ProseMirror](https://prosemirror.net) API in Rust.
//! It can be used to create a collaborative editing authority that is able to apply steps to
//! a document.
//!
//! Schemas are defined at runtime via JSON `SchemaSpec` using the [`dynamic`] module.

#[macro_use]
extern crate derive_new;

pub mod dynamic;
pub mod editor;
pub mod model;
pub mod transform;
pub mod util;