org.commonmark.ext.front.matter.YamlFrontMatterNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonmark-ext-yaml-front-matter Show documentation
Show all versions of commonmark-ext-yaml-front-matter Show documentation
commonmark-java extension for YAML front matter
package org.commonmark.ext.front.matter;
import org.commonmark.node.CustomNode;
import java.util.List;
public class YamlFrontMatterNode extends CustomNode {
private String key;
private List values;
public YamlFrontMatterNode(String key, List values) {
this.key = key;
this.values = values;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
}