xmindparser
xmindparser copied to clipboard
Parse xmind file to programmable data type (e.g. json, xml), support xmind legacy and xmind zen file types.
导出的文件中文是乱码 xmind_to_json("/Users/arvin/PycharmProjects/myPythonProject/1040.xmind") 看了下源码应该是f.write(json.dumps(xmind_to_dict(file_path), indent=2)),这个dumps函数需要加ensure_ascii=False
有JavaScripte版本能解析xmind格式的吗?
just like the demo: ``` import logging from xmindparser import xmind_to_dict,config config = {'logName': 'your_log_name', 'logLevel': logging.DEBUG, 'logFormat': '%(asctime)s %(levelname)-8s: %(message)s', 'showTopicId': True, # internal id will be included, default...