Summary
Mind Elixir supports adding node summaries in mind maps, as shown below:
Summary Data
export interface Summary {
id: string;
text: string;
parent: string;
start: number;
end: number;
}
The summary data contains the following fields:
id
: Unique identifiertext
: Summary textparent
: Parent node ID that the summary belongs tostart
: Starting child node index of the summaryend
: Ending child node index of the summary
warning
The parent node of a summary cannot be the root node.