All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.ext.tables.TableVisitor Maven / Gradle / Ivy

Go to download

flexmark-java extension for tables using "|" pipes with optional column spans and table caption

The newest version!
package com.vladsch.flexmark.ext.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);

  void visit(TableCaption node);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy