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