com.vladsch.flexmark.ext.yaml.front.matter.YamlFrontMatterVisitor 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;
public interface YamlFrontMatterVisitor {
void visit(YamlFrontMatterNode node);
void visit(YamlFrontMatterBlock node);
}