LyXHTML: don't explicitly mention that the style is CSS, HTML5 doesn't like it.

This commit is contained in:
Thibaut Cuvelier 2023-01-07 03:42:11 +01:00
parent 4c1f9d1161
commit fb4a26577e

View File

@ -2316,7 +2316,7 @@ Buffer::ExportStatus Buffer::writeLyXHTMLSource(odocstream & os,
// we are here if the CSS is supposed to be written to the header
// or if we failed to write it to an external file.
if (!written) {
os << "<style type='text/css'>\n"
os << "<style>\n"
<< dstyles
<< "\n</style>\n";
}