com.vladsch.flexmark.ext.gfm.tables.TableVisitor 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;
public interface TableVisitor {
void visit(TableBlock node);
void visit(TableHead node);
void visit(TableSeparator node);
void visit(TableBody node);
void visit(TableRow node);
void visit(TableCell node);
}