public interface MarkdownProcessor extends OptionChecker
Provides the interface to the Markdown processor.
| Modifier and Type | Field and Description |
|---|---|
static String |
INTERNAL_OPT_DISABLE_AUTO_HIGHLIGHT |
| Modifier and Type | Method and Description |
|---|---|
void |
start(String[][] options)
Starts the processor with the given options.
|
String |
toHtml(String markdown)
Converts the given markdown test to HTML.
|
isSupportedOptionstatic final String INTERNAL_OPT_DISABLE_AUTO_HIGHLIGHT
void start(String[][] options)
Starts the processor with the given options.
All processors should support the special option _disable-auto-highlight_.
The doclet maps its option -disable-auto-highlight to this special
processor option because disabling the auto highlight feature is usually
implemented by configuring the processors HTML renderer in some way.
options - an array of options; each entry consists of an array that has
the option name as first entry and any parameters for that option as subsequent
entries