Export Freemind mindmaps.
- HTML nodes
- Specify a formatter from the command-line
- Formatters are specified as Python programs
See examples in approval_tests:
python3 main.py --input ./data/test1.mm --formatter leaf_as_text.py
This project has been designed so that the formatting is separated from the XML representation.
To use another Exporter, implement another child of MindmapExporter
, then call it in the main arguments.
See example invocation in the approval_tests folder.
There is a sample exporter in the print_as_titles.py
file.