Package org.bsc.markdown
Interface MarkdownParserContext<N>
-
- Type Parameters:
N- specific parser node
public interface MarkdownParserContext<N>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Site.PagegetPage()the current Page Model ObjectOptional<String>getPagePrefixToApply()the page prefix to applyOptional<Site>getSite()The Site Model ObjectbooleanisLinkPrefixEnabled()indicates whether the prefix ${page.title} should be added or notvoidnotImplementedYet(N node)Strategy to publish 'not yet implemented' condition
-
-
-
Method Detail
-
getPage
Site.Page getPage()
the current Page Model Object- Returns:
-
notImplementedYet
void notImplementedYet(N node)
Strategy to publish 'not yet implemented' condition- Parameters:
node-
-
getPagePrefixToApply
Optional<String> getPagePrefixToApply()
the page prefix to apply- Returns:
- page prefix to apply. nullable
-
isLinkPrefixEnabled
boolean isLinkPrefixEnabled()
indicates whether the prefix ${page.title} should be added or not- Returns:
- use the prefix
-
-