Package com.vladsch.flexmark.html
Interface RendererExtension
- All Superinterfaces:
Extension
- All Known Implementing Classes:
AttributesExtension
-
Field Summary
Fields inherited from interface com.vladsch.flexmark.util.misc.Extension
EMPTY_LIST
-
Method Summary
Modifier and TypeMethodDescriptionvoid
extend
(@NotNull RendererBuilder rendererBuilder, @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 RendererBuilder rendererBuilder, @NotNull @NotNull String rendererType) Called to give each extension to register extension points that it contains- Parameters:
rendererBuilder
- builder to call back for extension point registrationrendererType
- type of rendering being performed. For now "HTML", "JIRA" or "YOUTRACK"- See Also:
-