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
    Konstruktor
    Beschreibung
     
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    static com.vladsch.flexmark.util.misc.Extension
    Extensions are added by providing a class to flexmark.
    void
    extend(com.vladsch.flexmark.html.HtmlRenderer.Builder rendererBuilder, String rendererType)
    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.

    Von Klasse geerbte Methoden java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Konstruktordetails

  • Methodendetails

    • rendererOptions

      public void rendererOptions(com.vladsch.flexmark.util.data.MutableDataHolder options)
      Called with all options.

      Currently this extension supports no options and does nothing.

      Angegeben von:
      rendererOptions in Schnittstelle com.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 Schnittstelle com.vladsch.flexmark.html.HtmlRenderer.HtmlRendererExtension
    • create

      public static com.vladsch.flexmark.util.misc.Extension 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