in reply to Re^2: PDF Letter format
in thread PDF Letter format

For my sanity, the answer to my own question will be changing this line:
my @all_lines = split/\n+/, $summary;
To this:
my @all_lines = split/\n/, $summary;
This way, “split” will only match one new line character and if I want to add new lines, I just type it.
But any suggestions is always welcome!