reStructuredText
****************

class commonmark.render.rst.ReStructuredTextRenderer(indent_char=' ')

   Render reStructuredText from Markdown

   Example:

      import commonmark

      parser = commonmark.Parser()
      ast = parser.parse('Hello `inline code` example')

      renderer = commonmark.ReStructuredTextRenderer()
      rst = renderer.render(ast)
      print(rst)  # Hello ``inline code`` example

   lit(s)

      Concatenate a literal string to the buffer.

      @param str {String} The string to concatenate.
