Class SimTocExtension
java.lang.Object
com.vladsch.flexmark.ext.toc.SimTocExtension
- All Implemented Interfaces:
Formatter.FormatterExtension, HtmlRenderer.HtmlRendererExtension, Parser.ParserExtension, Extension
public class SimTocExtension
extends Object
implements Parser.ParserExtension, HtmlRenderer.HtmlRendererExtension, Formatter.FormatterExtension
Extension for tocs
Create it with create() and then configure it on the builders
The parsed [TOC] text is turned into SimTocBlock nodes.
Rendered into table of contents based on the headings in the document
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DataKey<TocOptions> static final DataKey<SimTocGenerateOnFormat> static final DataKey<TocOptions.ListType> static final NullableDataKey<String> static final AttributablePartstatic final AttributablePartFields inherited from interface Extension
EMPTY_LIST -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SimTocExtensioncreate()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.
-
Field Details
-
TOC_CONTENT
-
TOC_LIST
-
LEVELS
-
IS_TEXT_ONLY
-
IS_NUMBERED
-
LIST_TYPE
-
IS_HTML
-
TITLE_LEVEL
-
TITLE
-
AST_INCLUDE_OPTIONS
-
BLANK_LINE_SPACER
-
DIV_CLASS
-
LIST_CLASS
-
CASE_SENSITIVE_TOC_TAG
-
FORMAT_UPDATE_ON_FORMAT
-
FORMAT_OPTIONS
-
-
Constructor Details
-
SimTocExtension
private SimTocExtension()
-
-
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
-
extend
- Specified by:
extendin interfaceFormatter.FormatterExtension
-
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
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:
-