All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.shaded.com.vladsch.flexmark.parser.block.NodePostProcessor Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.shaded.com.vladsch.flexmark.parser.block;

import com.greenpepper.shaded.com.vladsch.flexmark.ast.Document;
import com.greenpepper.shaded.com.vladsch.flexmark.parser.PostProcessor;

public abstract class NodePostProcessor implements PostProcessor {
    /**
     * @param document the node to post-process
     * @return the result of post-processing, may be a modified {@code document} argument
     */
    @Override
    public final Document processDocument(Document document) {
       return document;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy