com.vladsch.flexmark.parser.block.DocumentPostProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark Show documentation
Show all versions of flexmark Show documentation
Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)
The newest version!
package com.vladsch.flexmark.parser.block;
import com.vladsch.flexmark.parser.PostProcessor;
import com.vladsch.flexmark.util.ast.Node;
import com.vladsch.flexmark.util.ast.NodeTracker;
import org.jetbrains.annotations.NotNull;
public abstract class DocumentPostProcessor implements PostProcessor {
/**
* @param state node tracker used for optimizing node processing
* @param node the node to post-process
*/
final public void process(@NotNull NodeTracker state, @NotNull Node node) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy