]> git.lyx.org Git - features.git/commitdiff
LyXHTML: use a lower-case meta for generator, this is the most common convention.
authorThibaut Cuvelier <tcuvelier@lyx.org>
Sat, 7 Jan 2023 15:24:57 +0000 (16:24 +0100)
committerThibaut Cuvelier <tcuvelier@lyx.org>
Sat, 7 Jan 2023 15:24:57 +0000 (16:24 +0100)
src/Buffer.cpp

index 32d3e8955b82a0cc9423c3af7af22ac63fbbc1ad..2e43a15ed25785b7b1ab489e1809ea41dc18c4fb 100644 (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";