Class AnchorLinkExtension
java.lang.Object
com.vladsch.flexmark.ext.anchorlink.AnchorLinkExtension
- All Implemented Interfaces:
HtmlRenderer.HtmlRendererExtension
,Parser.ParserExtension
,Extension
public class AnchorLinkExtension
extends Object
implements Parser.ParserExtension, HtmlRenderer.HtmlRendererExtension
Extension for anchor links
Create it with create()
and then configure it on the builders
The parsed anchorlink text is turned into AnchorLink
nodes.
-
Field Summary
FieldsModifier and TypeFieldDescriptionFields inherited from interface com.vladsch.flexmark.util.misc.Extension
EMPTY_LIST
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic AnchorLinkExtension
create()
void
extend
(HtmlRenderer.Builder htmlRendererBuilder, @NotNull String rendererType) Called to give each extension to register extension points that it containsvoid
extend
(Parser.Builder parserBuilder) This method is called on all extensions so that they can register their custom processorsvoid
parserOptions
(MutableDataHolder options) This method is called first on all extensions so that they can adjust the options that must be common to all extensions.void
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.
-
Field Details
-
ANCHORLINKS_WRAP_TEXT
-
ANCHORLINKS_TEXT_PREFIX
-
ANCHORLINKS_TEXT_SUFFIX
-
ANCHORLINKS_ANCHOR_CLASS
-
ANCHORLINKS_SET_NAME
-
ANCHORLINKS_SET_ID
-
ANCHORLINKS_NO_BLOCK_QUOTE
-
-
Constructor Details
-
AnchorLinkExtension
private AnchorLinkExtension()
-
-
Method Details
-
create
-
extend
Description copied from interface:Parser.ParserExtension
This method is called on all extensions so that they can register their custom processors- Specified by:
extend
in interfaceParser.ParserExtension
- Parameters:
parserBuilder
- parser builder with which to register extensions- See Also:
-
rendererOptions
Description copied from interface:HtmlRenderer.HtmlRendererExtension
This method is called first on all extensions so that they can adjust the options that must be common to all extensions.- Specified by:
rendererOptions
in interfaceHtmlRenderer.HtmlRendererExtension
- Parameters:
options
- option set that will be used for the builder
-
parserOptions
Description copied from interface:Parser.ParserExtension
This method is called first on all extensions so that they can adjust the options that must be common to all extensions.- Specified by:
parserOptions
in interfaceParser.ParserExtension
- Parameters:
options
- option set that will be used for the builder
-
extend
public void extend(@NotNull HtmlRenderer.Builder htmlRendererBuilder, @NotNull @NotNull String rendererType) Description copied from interface:HtmlRenderer.HtmlRendererExtension
Called to give each extension to register extension points that it contains- Specified by:
extend
in interfaceHtmlRenderer.HtmlRendererExtension
- Parameters:
htmlRendererBuilder
- builder to call back for extension point registrationrendererType
- type of rendering being performed. For now "HTML", "JIRA" or "YOUTRACK"- See Also:
-