*** Please keep the mailing list in cc ***
Le 18/01/2015 13:46, Oliver Heimlich a écrit :
In line 533 of generate_package_html.m, where the contents of the
COPYING.html file are written, please use the insert_char_entities
function:
fprintf (fid, "<pre>%s</pre>\n\n", contents);
The current version does not escape html special characters, which is
problematic. The GPLv3 text contains several "<" and ">" characters.
The section where the NEWS file is written already does it right:
fprintf (fid, "<pre>%s</pre>\n\n", insert_char_entities
(news_content));
Yes, I will fix that too.