this.columns = columns;
}
public String parse(String text, String title) {
if (this.columns <= 0)
throw new TubainaException("There are no columns inside table " + title);
String tag = "\\begin{table}[!h]\n\\caption{" + title + "}\n\\begin{center}\n";
if (!noborder)
tag += "\\rowcolors[]{1}{gray!30}{gray!15}\n";
tag += "\\begin{tabular}{";
for (int i = 0; i < columns; i++)