Interface IMarkdownRenderer

All Known Implementing Classes:
MarkdownRendererImpl

public interface IMarkdownRenderer
Markdown rendering interface
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default String
    renderToHtml(String inputText)
    Render inputText with markdown to html (with table and autolink extension)
    renderToHtml(String inputText, boolean autoLink)
    Render inputText with markdown to html (with table and optional autolink extension)
  • Field Details

  • Method Details

    • renderToHtml

      default String renderToHtml(String inputText)
      Render inputText with markdown to html (with table and autolink extension)
      Parameters:
      inputText -
      Returns:
      html
    • renderToHtml

      String renderToHtml(String inputText, boolean autoLink)
      Render inputText with markdown to html (with table and optional autolink extension)
      Parameters:
      inputText -
      autoLink - true to enable autolink extension
      Returns:
      html