Class TypographicExtension
- java.lang.Object
-
- com.vladsch.flexmark.ext.typographic.TypographicExtension
-
- All Implemented Interfaces:
HtmlRenderer.HtmlRendererExtension,Parser.ParserExtension,Extension
public class TypographicExtension extends java.lang.Object implements Parser.ParserExtension, HtmlRenderer.HtmlRendererExtension
Extension for typographicsCreate it with
create()and then configure it on the buildersThe parsed typographic text is turned into
TypographicQuotesandTypographicSmartsnodes.
-
-
Field Summary
Fields Modifier and Type Field Description static DataKey<java.lang.String>ANGLE_QUOTE_CLOSEstatic DataKey<java.lang.String>ANGLE_QUOTE_OPENstatic NullableDataKey<java.lang.String>ANGLE_QUOTE_UNMATCHEDstatic DataKey<java.lang.String>DOUBLE_QUOTE_CLOSEstatic DataKey<java.lang.String>DOUBLE_QUOTE_OPENstatic NullableDataKey<java.lang.String>DOUBLE_QUOTE_UNMATCHEDstatic DataKey<java.lang.String>ELLIPSISstatic DataKey<java.lang.String>ELLIPSIS_SPACEDstatic DataKey<java.lang.String>EM_DASHstatic DataKey<java.lang.String>EN_DASHstatic DataKey<java.lang.Boolean>ENABLE_QUOTESstatic DataKey<java.lang.Boolean>ENABLE_SMARTSstatic DataKey<java.lang.String>SINGLE_QUOTE_CLOSEstatic DataKey<java.lang.String>SINGLE_QUOTE_OPENstatic DataKey<java.lang.String>SINGLE_QUOTE_UNMATCHED-
Fields inherited from interface com.vladsch.flexmark.util.misc.Extension
EMPTY_LIST
-
-
Constructor Summary
Constructors Modifier Constructor Description privateTypographicExtension()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TypographicExtensioncreate()voidextend(HtmlRenderer.Builder htmlRendererBuilder, @NotNull java.lang.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 Detail
-
ENABLE_QUOTES
public static final DataKey<java.lang.Boolean> ENABLE_QUOTES
-
ENABLE_SMARTS
public static final DataKey<java.lang.Boolean> ENABLE_SMARTS
-
ANGLE_QUOTE_CLOSE
public static final DataKey<java.lang.String> ANGLE_QUOTE_CLOSE
-
ANGLE_QUOTE_OPEN
public static final DataKey<java.lang.String> ANGLE_QUOTE_OPEN
-
ANGLE_QUOTE_UNMATCHED
public static final NullableDataKey<java.lang.String> ANGLE_QUOTE_UNMATCHED
-
DOUBLE_QUOTE_CLOSE
public static final DataKey<java.lang.String> DOUBLE_QUOTE_CLOSE
-
DOUBLE_QUOTE_OPEN
public static final DataKey<java.lang.String> DOUBLE_QUOTE_OPEN
-
DOUBLE_QUOTE_UNMATCHED
public static final NullableDataKey<java.lang.String> DOUBLE_QUOTE_UNMATCHED
-
ELLIPSIS
public static final DataKey<java.lang.String> ELLIPSIS
-
ELLIPSIS_SPACED
public static final DataKey<java.lang.String> ELLIPSIS_SPACED
-
EM_DASH
public static final DataKey<java.lang.String> EM_DASH
-
EN_DASH
public static final DataKey<java.lang.String> EN_DASH
-
SINGLE_QUOTE_CLOSE
public static final DataKey<java.lang.String> SINGLE_QUOTE_CLOSE
-
SINGLE_QUOTE_OPEN
public static final DataKey<java.lang.String> SINGLE_QUOTE_OPEN
-
SINGLE_QUOTE_UNMATCHED
public static final DataKey<java.lang.String> SINGLE_QUOTE_UNMATCHED
-
-
Method Detail
-
create
public static TypographicExtension create()
-
rendererOptions
public void rendererOptions(@NotNull @NotNull MutableDataHolder options)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 interfaceHtmlRenderer.HtmlRendererExtension- Parameters:
options- option set that will be used for the builder
-
parserOptions
public void parserOptions(MutableDataHolder options)
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
public void extend(Parser.Builder parserBuilder)
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:
Parser.Builder.customBlockParserFactory(CustomBlockParserFactory),Parser.Builder.customInlineParserExtensionFactory(InlineParserExtensionFactory),Parser.Builder.customInlineParserFactory(InlineParserFactory),Parser.Builder.customDelimiterProcessor(DelimiterProcessor),Parser.Builder.postProcessorFactory(PostProcessorFactory),Parser.Builder.paragraphPreProcessorFactory(ParagraphPreProcessorFactory),Parser.Builder.blockPreProcessorFactory(BlockPreProcessorFactory),Parser.Builder.linkRefProcessorFactory(LinkRefProcessorFactory),Parser.Builder.specialLeadInHandler(SpecialLeadInHandler)
-
extend
public void extend(@NotNull HtmlRenderer.Builder htmlRendererBuilder, @NotNull @NotNull java.lang.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:
HtmlRenderer.Builder.attributeProviderFactory(AttributeProviderFactory),HtmlRenderer.Builder.nodeRendererFactory(NodeRendererFactory),HtmlRenderer.Builder.linkResolverFactory(LinkResolverFactory),HtmlRenderer.Builder.htmlIdGeneratorFactory(HeaderIdGeneratorFactory)
-
-