class documentation

Base class for extensions to subclass.

Method __init__ Initiate Extension and set up configs.
Method extendMarkdown Add the various processors and patterns to the Markdown Instance.
Method getConfig Return a setting for the given key or an empty string.
Method getConfigInfo Return all config descriptions as a list of tuples.
Method getConfigs Return all configs settings as a dict.
Method setConfig Set a config setting for `key` with the given `value`.
Method setConfigs Set multiple config settings given a dict or list of tuples.
Class Variable config Undocumented
def getConfig(self, key, default=''): (source)

Return a setting for the given key or an empty string.

def getConfigInfo(self): (source)

Return all config descriptions as a list of tuples.

def getConfigs(self): (source)

Return all configs settings as a dict.

def setConfig(self, key, value): (source)

Set a config setting for `key` with the given `value`.

def setConfigs(self, items): (source)

Set multiple config settings given a dict or list of tuples.