{ local $/ = q{}; for (@ThisFileArray) { chomp; push @NewTextArray, qq{
$_
\n}; } } push(@FormattedParagraphs,@NewTextArray); @NewTextArray = ""; ####
{
local $/ = q{};
for (@ThisFileArray) {
chomp;
push @NewTextArray, qq{$_
\n};
}
@FormattedParagraphs = @NewTextArray;
foreach $newline (@FormattedParagraphs) {
$newline =~ s/<\/p>//;
}
@NewTextArray = ();
@ThisFileArray = ();
}