Class AttributesExtension
java.lang.Object
com.vladsch.flexmark.ext.attributes.AttributesExtension
- All Implemented Interfaces:
Formatter.FormatterExtension, HtmlRenderer.HtmlRendererExtension, RendererExtension, Parser.ParserExtension, Extension
public class AttributesExtension
extends Object
implements Parser.ParserExtension, RendererExtension, HtmlRenderer.HtmlRendererExtension, Formatter.FormatterExtension
Extension for attributes
Create it with create() and then configure it on the builders
The parsed attributes text is turned into AttributesNode nodes.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DataKey<FencedCodeAddType> static final DataKey<AttributeImplicitName> static final DataKey<DiscretionaryText> static final DataKey<AttributeImplicitName> static final DataKey<AttributeValueQuotes> static final DataKey<DiscretionaryText> static final DataKey<NodeAttributeRepository> Fields inherited from interface Extension
EMPTY_LIST -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic AttributesExtensioncreate()voidextend(Formatter.Builder formatterBuilder) voidextend(@NotNull RendererBuilder rendererBuilder, @NotNull String rendererType) Called to give each extension to register extension points that it containsvoidextend(HtmlRenderer.Builder htmlRendererBuilder, @NotNull String rendererType) Called to give each extension to register extension points that it containsvoidextend(Parser.Builder parserBuilder) This method is called on all extensions so that they can register their custom processorsvoidparserOptions(MutableDataHolder options) This method is called first on all extensions so that they can adjust the options that must be common to all extensions.voidrendererOptions(@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
-
NODE_ATTRIBUTES
-
ATTRIBUTES_KEEP
-
ASSIGN_TEXT_ATTRIBUTES
-
FENCED_CODE_INFO_ATTRIBUTES
-
FENCED_CODE_ADD_ATTRIBUTES
-
WRAP_NON_ATTRIBUTE_TEXT
-
USE_EMPTY_IMPLICIT_AS_SPAN_DELIMITER
-
FORMAT_ATTRIBUTES_COMBINE_CONSECUTIVE
-
FORMAT_ATTRIBUTES_SORT
-
FORMAT_ATTRIBUTES_SPACES
-
FORMAT_ATTRIBUTE_EQUAL_SPACE
-
FORMAT_ATTRIBUTE_VALUE_QUOTES
-
FORMAT_ATTRIBUTE_ID
-
FORMAT_ATTRIBUTE_CLASS
-
-
Constructor Details
-
AttributesExtension
private AttributesExtension()
-
-
Method Details
-
create
-
parserOptions
Description copied from interface:Parser.ParserExtensionThis method is called first on all extensions so that they can adjust the options that must be common to all extensions.- Specified by:
parserOptionsin interfaceParser.ParserExtension- Parameters:
options- option set that will be used for the builder
-
extend
Description copied from interface:Parser.ParserExtensionThis method is called on all extensions so that they can register their custom processors- Specified by:
extendin interfaceParser.ParserExtension- Parameters:
parserBuilder- parser builder with which to register extensions- See Also:
-
extend
- Specified by:
extendin interfaceFormatter.FormatterExtension
-
rendererOptions
Description copied from interface:RendererExtensionThis method is called first on all extensions so that they can adjust the options that must be common to all extensions.- Specified by:
rendererOptionsin interfaceFormatter.FormatterExtension- Specified by:
rendererOptionsin interfaceHtmlRenderer.HtmlRendererExtension- Specified by:
rendererOptionsin interfaceRendererExtension- 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.HtmlRendererExtensionCalled to give each extension to register extension points that it contains- Specified by:
extendin 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:
-
extend
public void extend(@NotNull @NotNull RendererBuilder rendererBuilder, @NotNull @NotNull String rendererType) Description copied from interface:RendererExtensionCalled to give each extension to register extension points that it contains- Specified by:
extendin interfaceRendererExtension- Parameters:
rendererBuilder- builder to call back for extension point registrationrendererType- type of rendering being performed. For now "HTML", "JIRA" or "YOUTRACK"- See Also:
-