Base interface for a the Markdown syntax tree
public interface IMarkdownObject
kind:method, kind:property, kind:ctor. Press Esc to clear.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.GetAttributes(IMarkdownObject)Gets or creates the HtmlAttributes stored on a MarkdownObjectTryGetAttributes(IMarkdownObject)Tries the get HtmlAttributes stored on a MarkdownObject.GetData<T>(IMarkdownObject, DataKey<T>)Gets the data associated with the specified typed key.GetData<T>(IMarkdownObject, Object)Gets the data associated with the specified key.GetData<T>(IMarkdownObject)Gets the data associated with the conventional type key (typeof(T)).SetData<T>(IMarkdownObject, T)Sets data on the conventional type key (typeof(T)).SetData<T>(IMarkdownObject, DataKey<T>, T)Sets data on the specified typed key.TryGetData<T>(IMarkdownObject, DataKey<T>, out T?)Tries to get the data associated with the specified typed key.TryGetData<T>(IMarkdownObject, Object, out T?)Tries to get the data associated with the specified key.