| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/node_modules/prosemirror-model/src/ |
Upload File : |
This module defines ProseMirror's content model, the data structures used to represent and work with documents. ### Document Structure A ProseMirror document is a tree. At each level, a [node](#model.Node) describes the type of the content, and holds a [fragment](#model.Fragment) containing its children. @Node @Fragment @Mark @Slice @ReplaceError ### Resolved Positions Positions in a document can be represented as integer [offsets](/docs/guide/#doc.indexing). But you'll often want to use a more convenient representation. @ResolvedPos @NodeRange ### Document Schema Every ProseMirror document conforms to a [schema](/docs/guide/#schema), which describes the set of nodes and marks that it is made out of, along with the relations between those, such as which node may occur as a child node of which other nodes. @Schema @SchemaSpec @NodeSpec @MarkSpec @AttributeSpec @NodeType @MarkType @ContentMatch ### DOM Representation Because representing a document as a tree of DOM nodes is central to the way ProseMirror operates, DOM [parsing](#model.DOMParser) and [serializing](#model.DOMSerializer) is integrated with the model. (But note that you do _not_ need to have a DOM implementation loaded to use this module.) @DOMParser @ParseOptions @ParseRule @DOMSerializer @DOMOutputSpec