Package org.jbake.parser
Class MarkdownEngine
- java.lang.Object
-
- org.jbake.parser.MarkupEngine
-
- org.jbake.parser.MarkdownEngine
-
- All Implemented Interfaces:
ParserEngine
public class MarkdownEngine extends MarkupEngine
Renders documents in the Markdown format.
-
-
Constructor Summary
Constructors Constructor Description MarkdownEngine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocessBody(ParserContext context)Processes the body of the document.-
Methods inherited from class org.jbake.parser.MarkupEngine
parse, parse, processHeader, validate
-
-
-
-
Method Detail
-
processBody
public void processBody(ParserContext context)
Description copied from class:MarkupEngineProcesses the body of the document. Usually subclasses will parse the document body and render it, exporting the result using theParserContext.setBody(String)method.- Overrides:
processBodyin classMarkupEngine- Parameters:
context- the parser context
-
-