Package org.bsc.markdown
Interface MarkdownProcessor
-
- All Known Implementing Classes:
MarkdownProcessor.Shared
public interface MarkdownProcessor
Markdown Processor interface
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MarkdownProcessor.Shared
-
Field Summary
Fields Modifier and Type Field Description static MarkdownProcessor.Shared
shared
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
markdown processor identifier used to choose which procerror use at run-timestatic MarkdownProcessor
load(String name)
factory methodString
processMarkdown(MarkdownParserContext context, String content)
translate a markdown source in the confluence wiki counterpart
-
-
-
Field Detail
-
shared
static final MarkdownProcessor.Shared shared
-
-
Method Detail
-
getName
String getName()
markdown processor identifier used to choose which procerror use at run-time- Returns:
- identifier
-
processMarkdown
String processMarkdown(MarkdownParserContext context, String content) throws IOException
translate a markdown source in the confluence wiki counterpart- Parameters:
context
- parse contextcontent
- content to parse- Returns:
- translated confluence wiki format
- Throws:
IOException
-
load
static MarkdownProcessor load(String name)
factory method- Returns:
-
-