com.vladsch.flexmark.ext.gfm.tables.TableHead Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-gfm-tables Show documentation
Show all versions of flexmark-ext-gfm-tables Show documentation
flexmark-java extension for GFM tables using "|" pipes (GitHub Flavored Markdown)
The newest version!
package com.vladsch.flexmark.ext.gfm.tables;
import com.vladsch.flexmark.util.ast.Node;
import com.vladsch.flexmark.util.sequence.BasedSequence;
/**
* Head part of a {@link TableBlock} containing {@link TableRow TableRows}.
*/
public class TableHead extends Node {
@Override
public BasedSequence[] getSegments() {
return EMPTY_SEGMENTS;
}
public TableHead() {
}
public TableHead(BasedSequence chars) {
super(chars);
}
}