-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
I was processing a GEDCOM file with several sequences that looked like:
0 @75265244@ NOTE
1 CONT Church Committee to build Augustana Church
The resulting note as parsed was: "undefined Church Committee to build Augustana Church"
This problem was easily fixed by modifying the section of code handling CONT lines with:
if (match[3] == "CONT") {
if (context[level-1].str === undefined)
context[level-1].str = match[5];
else
context[level-1].str += "\n" + match[5];
continue;
}
Metadata
Metadata
Assignees
Labels
No labels