Next: org-element-context, Up: Local Parsing [Index]
This function returns the local structure of the document around point. It returns only elements, not objects.
Determines the type and attribues of the closest element to point. This function does not
analyze the contents of objects, such as a paragraphs. The companion local parsing function
org-element-context
goes deeper into the object level.
Refer to the following links to see the difference between elements and objects:
is a list of (type, props)
, where
is the type of the element
is a plist of properties associated with the element. The exact properties dependes on the type, but will always include the following:
is the beginning buffer position of the token
is the ending buffer position of the token; the ‘:end’ property of this object matches the ‘:begin’ property of the next token.
is the element or object containing the token
is the numnber of blank lines or white spaces at its end