Package com.vladsch.flexmark.html
Interface HtmlRenderer.HtmlRendererExtension
- All Superinterfaces:
Extension
- All Known Implementing Classes:
AbbreviationExtension
,AdmonitionExtension
,AnchorLinkExtension
,AsideExtension
,AttributesExtension
,DefinitionExtension
,EmojiExtension
,EnumeratedReferenceExtension
,EscapedCharacterExtension
,FootnoteExtension
,GfmIssuesExtension
,GfmUsersExtension
,GitLabExtension
,InsExtension
,JekyllFrontMatterExtension
,JekyllTagExtension
,JiraConverterExtension
,MacroExtension
,MacrosExtension
,MediaTagsExtension
,ResizableImageExtension
,SimTocExtension
,SpecExampleExtension
,StrikethroughExtension
,StrikethroughSubscriptExtension
,SubscriptExtension
,SuperscriptExtension
,TablesExtension
,TaskListExtension
,TocExtension
,TypographicExtension
,WikiLinkExtension
,YouTrackConverterExtension
,YouTubeLinkExtension
,ZzzzzzExtension
- Enclosing class:
HtmlRenderer
Extension for
HtmlRenderer
.
This should be implemented by all extensions that have HtmlRenderer extension code.
Each extension will have its extend(Builder, String)
method called.
and should call back on the builder argument to register all extension points
-
Field Summary
Fields inherited from interface com.vladsch.flexmark.util.misc.Extension
EMPTY_LIST
-
Method Summary
Modifier and TypeMethodDescriptionvoid
extend
(@NotNull HtmlRenderer.Builder htmlRendererBuilder, @NotNull String rendererType) Called to give each extension to register extension points that it containsvoid
rendererOptions
(@NotNull MutableDataHolder options) This method is called first on all extensions so that they can adjust the options that must be common to all extensions.
-
Method Details
-
rendererOptions
This method is called first on all extensions so that they can adjust the options that must be common to all extensions.- Parameters:
options
- option set that will be used for the builder
-
extend
void extend(@NotNull @NotNull HtmlRenderer.Builder htmlRendererBuilder, @NotNull @NotNull String rendererType) Called to give each extension to register extension points that it contains- Parameters:
htmlRendererBuilder
- builder to call back for extension point registrationrendererType
- type of rendering being performed. For now "HTML", "JIRA" or "YOUTRACK"- See Also:
-