Klasse TopAnchorLinkExtension
java.lang.Object
org.jdrupes.mdoclet.processors.flexmark.TopAnchorLinkExtension
- Alle implementierten Schnittstellen:
com.vladsch.flexmark.html.HtmlRenderer.HtmlRendererExtension
,com.vladsch.flexmark.util.misc.Extension
public class TopAnchorLinkExtension
extends Object
implements com.vladsch.flexmark.html.HtmlRenderer.HtmlRendererExtension
Provides an extension that adds “
target='_top'
” to all anchor links.-
Feldübersicht
Von Schnittstelle geerbte Felder com.vladsch.flexmark.util.misc.Extension
EMPTY_LIST
-
Konstruktorübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic com.vladsch.flexmark.util.misc.Extension
create()
Extensions are added by providing a class to flexmark.void
This method is called once when the builder for the output is created.void
rendererOptions
(com.vladsch.flexmark.util.data.MutableDataHolder options) Called with all options.
-
Konstruktordetails
-
TopAnchorLinkExtension
public TopAnchorLinkExtension()
-
-
Methodendetails
-
rendererOptions
Called with all options.Currently this extension supports no options and does nothing.
- Angegeben von:
rendererOptions
in Schnittstellecom.vladsch.flexmark.html.HtmlRenderer.HtmlRendererExtension
-
extend
public void extend(com.vladsch.flexmark.html.HtmlRenderer.Builder rendererBuilder, String rendererType) This method is called once when the builder for the output is created.It must modify the passed in builder as required by the extension.
- Angegeben von:
extend
in Schnittstellecom.vladsch.flexmark.html.HtmlRenderer.HtmlRendererExtension
-
create
Extensions are added by providing a class to flexmark.Flexmark then invokes the extension’s static
create
method through reflection.- Gibt zurück:
- an instance of the extension
-