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
Konstruktoren - 
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic com.vladsch.flexmark.util.misc.Extensioncreate()Extensions are added by providing a class to flexmark.voidThis method is called once when the builder for the output is created.voidrendererOptions(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:
 rendererOptionsin 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:
 extendin Schnittstellecom.vladsch.flexmark.html.HtmlRenderer.HtmlRendererExtension
 - 
create
Extensions are added by providing a class to flexmark.Flexmark then invokes the extension’s static
createmethod through reflection.- Gibt zurück:
 - an instance of the extension
 
 
 -