singleParagraphDocShortText function
Implementation
MutableDocument singleParagraphDocShortText() => MutableDocument(
nodes: [
ParagraphNode(
id: "1",
text: AttributedText(
// End position is 37.
"This is the first node in a document.",
),
),
],
);