Class EnumeratedReferenceExtension
java.lang.Object
com.vladsch.flexmark.ext.enumerated.reference.EnumeratedReferenceExtension
- All Implemented Interfaces:
Formatter.FormatterExtension, HtmlRenderer.HtmlRendererExtension, Parser.ParserExtension, Parser.ReferenceHoldingExtension, Extension
public class EnumeratedReferenceExtension
extends Object
implements Parser.ParserExtension, HtmlRenderer.HtmlRendererExtension, Parser.ReferenceHoldingExtension, Formatter.FormatterExtension
Extension for enumerated_references
Create it with create() and then configure it on the builders
The parsed enumerated_reference text is turned into EnumeratedReferenceText nodes.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DataKey<EnumeratedReferences> static final DataKey<ElementPlacement> static final DataKey<ElementPlacementSort> static final DataKey<EnumeratedReferenceRepository> Fields inherited from interface Extension
EMPTY_LIST -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic EnumeratedReferenceExtensioncreate()voidextend(Formatter.Builder formatterBuilder) voidextend(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.booleantransferReferences(MutableDataHolder document, DataHolder included) This method is called to transfer references from included document to the source document
-
Field Details
-
ENUMERATED_REFERENCES_KEEP
-
ENUMERATED_REFERENCES
-
ENUMERATED_REFERENCE_ORDINALS
-
ENUMERATED_REFERENCE_PLACEMENT
-
ENUMERATED_REFERENCE_SORT
-
-
Constructor Details
-
EnumeratedReferenceExtension
private EnumeratedReferenceExtension()
-
-
Method Details
-
create
-
rendererOptions
Description copied from interface:HtmlRenderer.HtmlRendererExtensionThis 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- Parameters:
options- option set that will be used for the builder
-
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
-
transferReferences
Description copied from interface:Parser.ReferenceHoldingExtensionThis method is called to transfer references from included document to the source document- Specified by:
transferReferencesin interfaceParser.ReferenceHoldingExtension- Parameters:
document- destination document for referencesincluded- source document for references- Returns:
- true if there were references to transfer
-
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
-
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:
-