org.commonmark.ext.gfm.tables.TableBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonmark-ext-gfm-tables Show documentation
Show all versions of commonmark-ext-gfm-tables Show documentation
commonmark-java extension for GFM tables using "|" pipes (GitHub Flavored Markdown)
package org.commonmark.ext.gfm.tables;
import org.commonmark.node.CustomBlock;
/**
* Table block containing a {@link TableHead} and optionally a {@link TableBody}.
*/
public class TableBlock extends CustomBlock {
}