Package org.bsc.markdown
Interface MarkdownParserContext
-
public interface MarkdownParserContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Optional<Site.Page>
getPage()
the current Page Model Objectdefault Optional<String>
getPagePrefixToApply()
the page prefix to applydefault Optional<Site>
getSite()
The Site Model Objectdefault boolean
isLinkPrefixEnabled()
indicates whether the prefix ${page.title} should be added or notboolean
isSkipHtml()
skip html tag parsing
-
-
-
Method Detail
-
isSkipHtml
boolean isSkipHtml()
skip html tag parsing- Returns:
- true|false
-
getPage
default Optional<Site.Page> getPage()
the current Page Model Object- Returns:
- Page Model Object
-
getPagePrefixToApply
default Optional<String> getPagePrefixToApply()
the page prefix to apply- Returns:
- page prefix to apply. nullable
-
isLinkPrefixEnabled
default boolean isLinkPrefixEnabled()
indicates whether the prefix ${page.title} should be added or not- Returns:
- use the prefix
-
-