Hello,
I've added minutes to the meeting and want to export the meeting (including the minutes) to PDF. While the export happens without problem, the formatting of the minutes is an issue: formatting such as bullet points, which I added to the minutes, is not exported and all I see is one big chunk of text. Is this the way it should work?
Yes, formating is removed from PDF export, because in most cases if will lead to non regeration of PDF.
You can try to comment lines 879 and 880 in /view/objectDetail.php if you please, but you may face blocking issue :
if ($outMode=="pdf") { // Must purge data, otherwise will never be generated
//$val=str_replace(array('',''),array('
',''), $val);
//$val=strip_tags($val,'
');
}
Did as you suggested and the formatting is now visible, but there's a lot of overlapping text...
Yes, that's one of the reasons why formating is removed...
You can try to surrond result with a div, can work on some case, but will possibly not work on all cases.
$val=''.$val.'';