Package org.adempiere.base.markdown
Interface IMarkdownRenderer
- All Known Implementing Classes:
MarkdownRendererImpl
public interface IMarkdownRenderer
Markdown rendering interface
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault 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
-
MARKDOWN_OPENING_TAG
- See Also:
-
MARKDOWN_CLOSING_TAG
- See Also:
-
-
Method Details
-
renderToHtml
Render inputText with markdown to html (with table and autolink extension)- Parameters:
inputText
-- Returns:
- html
-
renderToHtml
Render inputText with markdown to html (with table and optional autolink extension)- Parameters:
inputText
-autoLink
- true to enable autolink extension- Returns:
- html
-