diff --git a/core/src/processing/data/Table.java b/core/src/processing/data/Table.java index 39ab885f9..d60e9ede5 100644 --- a/core/src/processing/data/Table.java +++ b/core/src/processing/data/Table.java @@ -1133,7 +1133,9 @@ public class Table { writer.println(" "); for (String entry : getColumnTitles()) { writer.print(" "); - writeEntryHTML(writer, entry); + if (entry != null) { + writeEntryHTML(writer, entry); + } writer.println(""); } writer.println(" "); @@ -1144,7 +1146,14 @@ public class Table { for (int col = 0; col < getColumnCount(); col++) { String entry = getString(row, col); writer.print(" "); - writeEntryHTML(writer, entry); + if (entry != null) { + // probably not a great idea to mess w/ the export +// if (entry.startsWith("<") && entry.endsWith(">")) { +// writer.print(entry); +// } else { + writeEntryHTML(writer, entry); +// } + } writer.println(""); } writer.println(" ");