Manesx

Results 3 issues of Manesx

This solved my problem: ``` parser = etree.XMLParser(recover=True) tree = etree.fromstring(xml_src, parser=parser) # tree = self.fix_tables(xml_src) ```

bug

Found a problem when using the same object in different objects ``` fjson_object *m = fjson_object_new_object(); fjson_object *i = fjson_object_new_int(1); fjson_object *a = fjson_object_new_object(); fjson_object_object_add(a, "i", i); fjson_object *b =...

This solved my problem: ``` parser = etree.XMLParser(recover=True) tree = etree.fromstring(xml_src, parser=parser) # tree = self.fix_tables(xml_src) ```