Base implementation for a the Markdown syntax tree.
public abstract class MarkdownObject : IMarkdownObject
kind:method, kind:property, kind:ctor. Press Esc to clear.MarkdownObject()Initializes a new instance of the MarkdownObject class.SpanThe source spanColumnGets or sets the text column this instance was declared (zero-based).LineGets or sets the text line this instance was declared (zero-based).ContainsData(Object)Determines whether this instance contains the specified key data.GetData(Object)Gets the associated data for the specified key.RemoveData(Object)Removes the associated data for the specified key.SetData(Object, Object)Stores a key/value pair for this instance.ToPositionText()Gets a string of the location in the text.Descendants(MarkdownObject)Iterates over the descendant elements for the specified markdown element, including Block and Inline. The descendant elements are returned in DFS-like order.Descendants<T>(MarkdownObject)Iterates over the descendant elements for the specified markdown element, including Block and Inline and filters by the type T. The descendant elements are returned in DFS-like order.