### Overview
Python-Markdown includes an API for extension writers to plug their own
custom functionality and/or syntax into the parser. There are preprocessors
which allow you to alter the source before it is passed to the parser,
inline patterns which allow you to add, remove or override the syntax of
any inline elements, and postprocessors which allow munging of the
output of the parser before it is returned.
As the parser builds an [ElementTree][] DOM object which is later rendered
as Unicode text, there are also some helpers provided to make manipulation of
the DOM tree easier. Each part of the API is discussed in its respective
section below. You may find reading the source of some [[existing extensions]]
helpful as well. For example, the [[footnote]] extension uses most of the
features documented here.
* [Preprocessors][]
* [TextPreprocessors][]
* [Line Preprocessors][]
* [InlinePatterns][]
* [Postprocessors][]
* [DOM Postprocessors][]
* [TextProstprocessors][]
* [Working with the DOM][]
* [Integrating your code into Markdown][]
* [extendMarkdown][]
* [Config Settings][]
* [makeExtension][]
Preprocessors
Preprocessors munge the source text before it is passed into the Markdown
core. This is an excellent place to clean up bad syntax, extract things the
parser may otherwise choke on and perhaps even store it for later retrieval.
There are two types of preprocessors: [TextPreprocessors][] and
[Line Preprocessors][].
TextPreprocessors
TextPreprocessors should inherit from `markdown.TextPreprocessor` and implement
a `run` method with one argument `text`. The `run` method of each
TextPreprocessor will be passed the entire source text as a single Unicode
string and should either return that single Unicode string, or an altered
version of it.
For example, a simple TextPreprocessor that normalizes newlines [^1] might look
like this:
class NormalizePreprocessor(markdown.TextPreprocessor):
def run(self, text):
return text.replace("\r\n", "\n").replace("\r", "\n")
[^1]: It should be noted that Markdown already normalizes newlines. This
example is for illustrative purposes only.
Line Preprocessors
Line Preprocessors should inherit from `markdown.Preprocessor` and implement
a `run` method with one argument `lines`. The `run` method of each Line
Preprocessor will be passed the entire source text as a list of Unicode strings.
Each string will contain one line of text. The `run` method should return
either that list, or an altered list of Unicode strings.
A pseudo example:
class MyPreprocessor(markdown.Preprocessor):
def run(self, lines):
new_lines = []
for line in lines:
m = MYREGEX.match(line)
if m:
# do stuff
else:
new_lines.append(line)
return new_lines
Inline Patterns
Inline Patterns implement the inline HTML element syntax for Markdown such as
`*emphasis*` or `[links](http://example.com)`. Pattern objects should be
instances of classes that inherit from `markdown.Pattern` or one of its
children. Each pattern object uses a single regular expression and must have
the following methods:
* `getCompiledRegExp()`: Returns a compiled regular expression.
* `handleMatch(m)`: Accepts a match object and returns an ElementTree
element of a plain Unicode string.
Note that any regular expression returned by `getCompiledRegExp` must capture
the whole block. Therefore, they should all start with `r'^(.*?)'` and end
with `r'(.*?)!'. When using the default `getCompiledRegExp()` method provided
in the `Pattern` you can pass in a regular expression without that and
`getCompiledRegExp` will wrap your expression for you. This means that the first
group of your match will be `m.group(2)` as `m.group(1)` will match everything
before the pattern.
For an example, consider this simplified emphasis pattern:
class EmphasisPattern(markdown.Pattern):
def handleMatch(self, m):
el = markdown.etree.Element('em')
el.text = m.group(3)
return el
As discussed in [Integrating Your Code Into Markdown][], an instance of this
class will need to be provided to Markdown. That instance would be created
like so:
# an oversimplified regex
MYPATTERN = r'\*([^*]+)\*'
# pass in pattern and create instance
emphasis = EmphasisPattern(MYPATTERN)
Actually it would not be necessary to create that pattern (and not just because
a more sophisticated emphasis pattern already exists in Markdown). The fact is,
that example pattern is not very DRY. A pattern for `**strong**` text would
be almost identical, with the exception that it would create a 'strong' element.
Therefore, Markdown provides a number of generic pattern classes that can
provide some common functionality. For example, both emphasis and strong are
implemented with separate instances of the `SimpleTagPettern` listed below.
Feel free to use or extend any of these Pattern classes.
**Generic Pattern Classes**
* `SimpleTextPattern(pattern)`:
Returns simple text of `group(2)` of a `pattern`.
* `SimpleTagPattern(pattern, tag)`:
Returns an element of type "`tag`" with a text attribute of `group(3)`
of a `pattern`. `tag` should be a string of a HTML element (i.e.: 'em').
* `SubstituteTagPattern(pattern, tag)`:
Returns an element of type "`tag`" with no children or text (i.e.: 'br').
There may be other Pattern classes in the Markdown source that you could extend
or use as well. Read through the source and see if there is anything you can
use. You might even get a few ideas for different approaches to your specific
situation.
Postprocessors
Postprocessors manipulate a document after it has passed through the Markdown
core. This is were stored text gets added back in such as a list of footnotes,
a table of contents or raw html.
There are two types of postprocessors: [DOM Postprocessors][] and
[TextPostprocessors][].
DOM Postprocessors
A DOM Postprocessor should inherit from `markdown.Postprocessor` and over-ride
the `run` method which takes one argument `root` and should return either
that root element or a modified root element.
A pseudo example:
class MyPostprocessor(markdown.Postprocessor):
def run(self, root):
#do stufff
return my_modified_root
For specifics on manipulating the DOM, see [Working with the DOM][] below.
TextPostprocessors
A TextPostprocessor should inherit from `markdown.TextPostprocessor` and
over-ride the `run` method which takes one argument `text` and returns a
Unicode string.
TextPostprocessors are run after the DOM has been serialized back into Unicode
text. For example, this may be an appropriate place to add a table of contents
to a document:
class TocTextPostprocessor(markdown.TextPostprocessor):
def run(self, text):
return MYMARKERRE.sub(MyToc, text)
Working with the DOM
As mentioned, the Markdown parser converts a source document to an
[ElementTree][] DOM object before serializing that back to Unicode text.
Markdown has provided some helpers to ease that manipulation within the context
of the Markdown module...