module documentation

Meta Data Extension for Python-Markdown ======================================= This extension adds Meta Data handling to markdown. See <https://Python-Markdown.github.io/extensions/meta_data> for documentation. Original code Copyright 2007-2008 [Waylan Limberg](http://achinghead.com). All changes Copyright 2008-2014 The Python Markdown Project License: [BSD](https://opensource.org/licenses/bsd-license.php)

Class MetaExtension Meta-Data extension for Python-Markdown.
Class MetaPreprocessor Get Meta-Data.
Function makeExtension Undocumented
Constant BEGIN_RE Undocumented
Constant END_RE Undocumented
Constant META_MORE_RE Undocumented
Constant META_RE Undocumented
Variable log Undocumented
def makeExtension(**kwargs): (source)

Undocumented

BEGIN_RE = (source)

Undocumented

Value
re.compile(r'^-{3}(\s.*)?')
END_RE = (source)

Undocumented

Value
re.compile(r'^(-{3}|\.{3})(\s.*)?')
META_MORE_RE = (source)

Undocumented

Value
re.compile(r'^ {4,}(?P<value>.*)')
META_RE = (source)

Undocumented

Value
re.compile(r'^ {,3}(?P<key>[A-Za-z0-9_-]+):\s*(?P<value>.*)')

Undocumented