Interface NodeFormatterFactory

  • All Superinterfaces:
    com.vladsch.flexmark.util.dependency.Dependent

    public interface NodeFormatterFactory
    extends com.vladsch.flexmark.util.dependency.Dependent
    Factory for instantiating new node renderers when rendering is done.
    • Method Detail

      • create

        @NotNull
        @NotNull NodeFormatter create​(@NotNull
                                      @NotNull com.vladsch.flexmark.util.data.DataHolder options)
        Create a new node renderer for the specified rendering context.
        Parameters:
        options - the context for rendering (normally passed on to the node renderer)
        Returns:
        a node renderer
      • getAfterDependents

        @Nullable
        default @Nullable Set<Class<?>> getAfterDependents()
        Specified by:
        getAfterDependents in interface com.vladsch.flexmark.util.dependency.Dependent
        Returns:
        null or a list of processors that must be executed before calling this one if any of the blocks in the list affect global state then these will be run on ALL blocks of the document before this pre processor is called.
      • getBeforeDependents

        @Nullable
        default @Nullable Set<Class<?>> getBeforeDependents()
        Specified by:
        getBeforeDependents in interface com.vladsch.flexmark.util.dependency.Dependent
        Returns:
        null or a list of processors before which this has to be run if any of the blocks in the list affect global state then these will be run on ALL blocks of the document before this pre processor is called.
      • affectsGlobalScope

        default boolean affectsGlobalScope()
        Specified by:
        affectsGlobalScope in interface com.vladsch.flexmark.util.dependency.Dependent