blob: 238c45025170a658a2caf38ab646ed3f80e024a2 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001# $Id: null.py 4564 2006-05-21 20:44:42Z wiemann $
2# Author: Martin Blais <blais@furius.ca>
3# Copyright: This module has been placed in the public domain.
4
5"""A do-nothing parser."""
6
7from docutils import parsers
8
9
10class Parser(parsers.Parser):
11
12 """A do-nothing parser."""
13
14 supported = ('null',)
15
16 config_section = 'null parser'
17 config_section_dependencies = ('parsers',)
18
19 def parse(self, inputstring, document):
20 pass