]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/Context.h
Handle empty index subentries (#7820)
[features.git] / src / tex2lyx / Context.h
index 2d5315b5dff7dc4a1af0540bfa101e8a0dca8211..427e4020a81556c748b4754eff4885cb243b0047 100644 (file)
@@ -145,6 +145,9 @@ public:
        /// the text before the first \item. Typically, list
        /// parameters (such as lengths) are adjusted here.
        bool in_list_preamble;
+       /// Store commands that should not be converted
+       /// (stored without \\)
+       std::set<std::string> pass_thru_cmds;
        /// we are handling a standard paragraph in an itemize-like
        /// environment
        bool deeper_paragraph;
@@ -173,6 +176,10 @@ public:
        static TeXFont normalfont;
        /// Table rotation angle
        int tablerotation;
+       ///
+       bool in_table_cell;
+       ///
+       char cell_align;
 
 private:
        void begin_layout(std::ostream & os, Layout const * const & l);