prosemirror 0.5.2

A Rust implementation of ProseMirror's document model and transform pipeline
Documentation
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 2rem;
  background: #f5f5f5;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #333;
}

#editor {
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 200px;
  padding: 1rem;
  margin: 1rem 0;
}

.ProseMirror {
  outline: none;
}

.ProseMirror p {
  margin: 0.5em 0;
}

.ProseMirror h1, .ProseMirror h2, .ProseMirror h3 {
  margin: 1em 0 0.5em;
  line-height: 1.3;
}

.ProseMirror ul, .ProseMirror ol {
  padding-left: 1.5em;
}

.ProseMirror blockquote {
  border-left: 3px solid #ddd;
  margin: 0.5em 0;
  padding-left: 1em;
  color: #555;
}

.ProseMirror pre {
  background: #f4f4f4;
  padding: 0.5em;
  border-radius: 3px;
}

.ProseMirror code {
  background: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}

#content {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666;
}

#content pre {
  background: #f8f8f8;
  padding: 0.5em;
  border-radius: 4px;
  overflow-x: auto;
}