Subject: | write_url() with bad url corrupts document |
Example:
use strict;
use Excel::Writer::XLSX;
my $b = Excel::Writer::XLSX->new("t.xlsx");
my $w = $b->add_worksheet();
$w->write_url(0, 0, "http://google.com\n"); # bad
# $w->write_url(0, 0, "http://goog\0le.com"); # bad
# $w->write_url(0, 0, "http://goo gle.com"); # bad
__END__
MS. Office will suggest to fix document when you'll try to open this file.
Faced out with this problem when one of the url was with space at the end.