Embed SVG images as ``<svg>`` instead of data-URI.
[docutils.git] / docutils / test / local-parser.py
blob646309540826eb1f25afd8517edf64c701063238
1 # $Id$
2 # Authors: Engelbert Gruber <grubert@users.sourceforge.net>
3 # Toshio Kuratomi <toshio@fedoraproject.org>
4 # Copyright: This module is put into the public domain.
6 """
7 mini-reader to test get_reader_class with local reader
8 """
10 from docutils import parsers
13 class Parser(parsers.Parser):
15 supported = ('dummy',)
16 """Formats this reader supports."""
18 def parser(self, inputstring, document):
19 self.setup_parse(inputstring, document)
20 self.finish_parse()