Go to file
Tomasz Sowa 2576eb12d1 HTMLParser: start working on xml mode
added methods:
Status parse_xml_file(const char * file_name,         Space & out_space, bool compact_mode = false, bool clear_space = true);
Status parse_xml_file(const std::string & file_name,  Space & out_space, bool compact_mode = false, bool clear_space = true);
Status parse_xml_file(const wchar_t * file_name,      Space & out_space, bool compact_mode = false, bool clear_space = true);
Status parse_xml_file(const std::wstring & file_name, Space & out_space, bool compact_mode = false, bool clear_space = true);
2021-08-10 21:56:04 +02:00
src HTMLParser: start working on xml mode 2021-08-10 21:56:04 +02:00
tests added a base class for parsers: BaseParser (convert/baseparser.h|cpp) 2021-07-17 14:38:22 +02:00
.editorconfig added .editorconfig file with tab style and tab size information 2021-05-15 18:34:10 +02:00
.gitignore removed *.a from .gitignore 2021-05-18 23:58:46 +02:00
Makefile fixed memory leak in CSVParser::parse() - a Space struct was allocated but never freed 2021-05-19 22:31:18 +02:00