com.vladsch.flexmark.ext.ins.InsVisitorExt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-ins Show documentation
Show all versions of flexmark-ext-ins Show documentation
flexmark-java extension for ins
The newest version!
package com.vladsch.flexmark.ext.ins;
import com.vladsch.flexmark.util.ast.VisitHandler;
public class InsVisitorExt {
public static VisitHandler>[] VISIT_HANDLERS(V visitor) {
return new VisitHandler>[] {
new VisitHandler<>(Ins.class, visitor::visit),
};
}
}