# -*- coding: utf-8 -*- # $Id$ # Authors: Engelbert Gruber # Toshio Kuratomi # Copyright: This module is put into the public domain. """ mini-reader to test get_reader_class with local reader """ from docutils import parsers class Parser(parsers.Parser): supported = ('dummy',) """Formats this reader supports.""" def parser(self, inputstring, document): self.setup_parse(inputstring, document) document = dict() self.finish_parse()