]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Attempt to fix #8137 (arrived at r40862).
[lyx.git] / src / LaTeXFeatures.h
index e36ef43bb07327a097e248845f1488c7c6eaf798..3b1cc89d646233a5c202c6d48249b6083aa50df4 100644 (file)
@@ -56,7 +56,7 @@ public:
        std::string const getBabelPresettings() const;
        /// Extra preamble code after babel is called
        std::string const getBabelPostsettings() const;
-       /// Do we need to pass the languages to babel directly? 
+       /// Do we need to pass the languages to babel directly?
        bool needBabelLangOptions() const;
        /// Load AMS packages when appropriate
        std::string const loadAMSPackages() const;
@@ -82,6 +82,10 @@ public:
        void addPreambleSnippet(std::string const &);
        ///
        std::string getPreambleSnippets() const;
+       ///
+       void addCSSSnippet(std::string const &);
+       ///
+       std::string getCSSSnippets() const;
        /// Add a feature name requirements
        void require(std::string const & name);
        /// Add a set of feature names requirements
@@ -150,6 +154,8 @@ private:
        ///
        SnippetList preamble_snippets_;
        ///
+       SnippetList css_snippets_;
+       ///
        typedef std::set<Language const *> LanguageList;
        /// used languages (only those that are supported by babel)
        LanguageList UsedLanguages_;