add StringDict constructor, another double quote case

This commit is contained in:
Ben Fry
2017-01-30 18:50:16 -05:00
parent 0353d175eb
commit 6f2297681c
4 changed files with 26 additions and 0 deletions

View File

@@ -671,6 +671,12 @@ public class Table {
addPiece(start, i, hasEscapedQuotes);
start = i+2;
return true;
} else {
// This is a lone-wolf quote, occasionally seen in exports.
// It's a single quote in the middle of some other text,
// and not escaped properly. Pray for the best!
i++;
}
} else { // not a quoted line