Interface MarkdownNodeRendererContext

All Known Implementing Classes:
MarkdownRenderer.RendererContext

public interface MarkdownNodeRendererContext
  • Method Details

    • getWriter

      MarkdownWriter getWriter()
      Returns:
      the writer to use
    • render

      void render(Node node)
      Render the specified node and its children using the configured renderers. This should be used to render child nodes; be careful not to pass the node that is being rendered, that would result in an endless loop.
      Parameters:
      node - the node to render
    • getSpecialCharacters

      Set<Character> getSpecialCharacters()
      Returns:
      additional special characters that need to be escaped if they occur in normal text; currently only ASCII characters are allowed