You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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);
|
2 years ago |
src
|
HTMLParser: start working on xml mode
|
2 years ago |
tests
|
added a base class for parsers: BaseParser (convert/baseparser.h|cpp)
|
2 years ago |
.editorconfig
|
added .editorconfig file with tab style and tab size information
|
2 years ago |
.gitignore
|
removed *.a from .gitignore
|
2 years ago |
Makefile
|
fixed memory leak in CSVParser::parse() - a Space struct was allocated but never freed
|
2 years ago |