From: Richard Kimberly Heck Date: Sat, 14 Mar 2020 22:31:25 +0000 (-0400) Subject: Fix bug #11780. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e17dd72ce23ba33e53c01320a40c22c5b46a26d4;p=features.git Fix bug #11780. The preamble snippets are for LaTeX and do not need to be output with HTML. --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 620f5c2904..ec11ac2c88 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -2261,10 +2261,6 @@ Buffer::ExportStatus Buffer::writeLyXHTMLSource(odocstream & os, if (!styles.empty()) os << "\n\n" << styles << '\n'; - styles = features.getPreambleSnippets().str; - if (!styles.empty()) - os << "\n\n" << styles << '\n'; - // we will collect CSS information in a stream, and then output it // either here, as part of the header, or else in a separate file. odocstringstream css; diff --git a/src/LaTeXFeatures.h b/src/LaTeXFeatures.h index 8ec5e68cce..af27b5c232 100644 --- a/src/LaTeXFeatures.h +++ b/src/LaTeXFeatures.h @@ -93,7 +93,8 @@ public: void addPreambleSnippet(docstring const & snippet, bool allowdupes = false); /// TexString getPreambleSnippets() const; - /// + /// Adds CSS information for HTML export. + /// Note that addPreambleSnippet is for LaTeX-type export void addCSSSnippet(std::string const &); /// docstring getCSSSnippets() const;