LyXHTML: use a lower-case meta for generator, this is the most common convention.

This commit is contained in:
Thibaut Cuvelier 2023-01-07 16:24:57 +01:00
parent a5c6215ebd
commit 6a3bd64032

View File

@ -2254,7 +2254,7 @@ Buffer::ExportStatus Buffer::writeLyXHTMLSource(odocstream & os,
os << "<!DOCTYPE html>\n"
<< "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"" << from_ascii(htmlCode) << "\">\n"
<< "<head>\n"
<< "<meta name=\"GENERATOR\" content=\"" << PACKAGE_STRING << "\" />\n"
<< "<meta name=\"generator\" content=\"" << PACKAGE_STRING << "\" />\n"
// FIXME Presumably need to set this right
<< "<meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\" />\n";