com.vladsch.flexmark.ext.macros.MacrosVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-macros Show documentation
Show all versions of flexmark-ext-macros Show documentation
flexmark-java extension for processing macros
package com.vladsch.flexmark.ext.macros;
public interface MacrosVisitor {
void visit(MacroReference node);
void visit(MacroDefinitionBlock node);
}