We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da087ee commit ea6e8fcCopy full SHA for ea6e8fc
lib/textgrid.js
@@ -66,7 +66,7 @@
66
fileName = "Unknown"; /* reset filename if there is are two empty lines */
67
console.log("Reset filename if there is are two empty lines");
68
}
69
- } else if (line.search(/ /) !== 0) {
+ } else if (line.search(/ /) !== 0 && line.search(/\t/) !== 0) {
70
pieces = line.split(" = ");
71
if (pieces.length === 2) {
72
key = pieces[0].trim().replace(/ /g, "_");
0 commit comments