An Element is a uniquely identifiable system element within a Markdown document. It starts with a ### header and includes all content under that header until the next header of the same or higher hierarchy.
### header defines the start of an element.### header serves as the element name.### header until:
### header, or##, #), or####)Header Format:
### header.### header text must not be empty.Global Uniqueness:
Nested Subheaders:
#### header are part of the same element and do not create new elements.No Overlapping Content:
Section headers (## Header) may exist in markdown documents for visual organization but are not tracked by the system:
## headers during model construction## headers are preserved but not managed--index parameter in CLI commands refers to element position in the entire fileSingle Element:
### My Element
This is the content of My Element.
#### Subsection
Additional details about My Element.
Multiple Elements:
### Element One
This is the content of Element One.
### Element Two
This is the content of Element Two.
Nested Subheaders:
### Main Element
This is the main element content.
#### Subsection
Details about the subsection.
#### Another Subsection
More details about another subsection.
Element headers empty:
###
Headers not unique within the model:
### Duplicate
Content of the first duplicate.
### Duplicate
Content of the second duplicate.
An element may contain different Subsections, some of which are strictly defined, while others allow free-form content.
Subsections starts with the #### Subsection Name and ends either with new element or next subsection.
Subsection must be located within an element chunk.
The #### header marks the beginning of the subsection.
It must appear directly within an element chunk, following the ### header of the parent element and any preceding content, including previous subsections.
Each element chunk can have at most one #### SubsectionName subsection where ‘SubsectionName’ is a unique name of the subsection within an element.
Some subsections are reserved with predefined structure and behavior, while others allow free-form content. The specific reserved subsections are defined separately as capabilities of the system.