Interface Parser.ParserExtension

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

    public static interface Parser.ParserExtension
    extends com.vladsch.flexmark.util.misc.Extension
    Extension for Parser.

    Implementations of this interface should done by all Extensions that extend the core parser

    Each will be called via extend(Builder) method giving it a chance to call back on the builder methods to register parser 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​(Parser.Builder parserBuilder)
      This method is called on all extensions so that they can register their custom processors
      void parserOptions​(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.