Interface HtmlRenderer.HtmlRendererExtension

  • All Superinterfaces:
    com.vladsch.flexmark.util.misc.Extension
    Enclosing class:
    HtmlRenderer

    public static interface HtmlRenderer.HtmlRendererExtension
    extends com.vladsch.flexmark.util.misc.Extension
    Extension for HtmlRenderer.

    This should be implemented by all extensions that have HtmlRenderer extension code.

    Each extension will have its extend(Builder, String) method called. and should call back on the builder argument to register all extension points

    • Field Summary

      • Fields inherited from interface com.vladsch.flexmark.util.misc.Extension

        EMPTY_LIST
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void extend​(@NotNull HtmlRenderer.Builder htmlRendererBuilder, @NotNull String rendererType)
      Called to give each extension to register extension points that it contains
      void rendererOptions​(@NotNull com.vladsch.flexmark.util.data.MutableDataHolder options)
      This method is called first on all extensions so that they can adjust the options that must be common to all extensions.