Skip to content

Commit

Permalink
Put notes in a new paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Sep 26, 2024
1 parent 54ff620 commit 0654bd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -7304,9 +7304,10 @@ sub print_person
$phrase = Data::Text->new();
}
if(scalar(@phrases)) {
$bio->append(conjunction(map { $_->as_string() } @phrases))->append(".\n");
$bio->append(conjunction(map { $_->as_string() } @phrases))->append('.');
@phrases = ();
}
$notes = "\n$notes";
}
$notes =~ s/\.$//;
$phrase = Data::Text->new($notes);
Expand Down

0 comments on commit 0654bd3

Please sign in to comment.