2003-04-17 15:05:17 +00:00
|
|
|
#ifndef TEX2LYX_H
|
|
|
|
#define TEX2LYX_H
|
|
|
|
|
|
|
|
#include "texparser.h"
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
void parse_preamble(Parser & p, std::ostream & os);
|
|
|
|
|
|
|
|
void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer);
|
|
|
|
|
|
|
|
void parse_table(Parser & p, std::ostream & os, unsigned flags);
|
|
|
|
|
|
|
|
void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
|
|
|
|
|
|
|
|
void handle_tabular(Parser & p, std::ostream & os);
|
|
|
|
|
|
|
|
// Helper
|
|
|
|
std::string parse_text(Parser & p, unsigned flags, const bool outer);
|
|
|
|
|
|
|
|
void handle_comment(Parser & p);
|
|
|
|
std::string const trim(std::string const & a, char const * p = " \t\n\r");
|
|
|
|
|
|
|
|
void split(std::string const & s, std::vector<std::string> & result, char delim = ',');
|
|
|
|
std::string join(std::vector<std::string> const & input, char const * delim);
|
|
|
|
|
|
|
|
bool is_math_env(std::string const & name);
|
|
|
|
char const ** is_known(string const & str, char const ** what);
|
|
|
|
|
|
|
|
// Access to environment stack
|
2003-04-23 15:14:43 +00:00
|
|
|
extern std::vector<std::string> active_environments;
|
|
|
|
std::string active_environment();
|
2003-04-17 15:05:17 +00:00
|
|
|
|
|
|
|
#endif
|