From 861af2b84f8e094a58f84112554e3f21ab78e05f Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Wed, 11 Jan 2023 01:12:22 +0100 Subject: [PATCH] LyXHTML: remove meta content-type, it is only for HTML5, not XHTML5 (LyX is generating XML-compatible HTML, i.e. XHTML5). --- src/Buffer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 2e43a15ed2..4d7adc3534 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -2254,9 +2254,7 @@ Buffer::ExportStatus Buffer::writeLyXHTMLSource(odocstream & os, os << "\n" << "\n" << "\n" - << "\n" - // FIXME Presumably need to set this right - << "\n"; + << "\n"; docstring const & doctitle = features.htmlTitle(); os << "" -- 2.39.5