A tool to convert between Freemind/Freeplane and PlantUML mindmaps.
Project description
Mind Map Converter
Overview
This project provides a Python script (mindmapconverter.py) to facilitate the conversion between Freeplane/Freemind XML mind map files (.mm), PlantUML mind map definitions (.puml), and Markdown nested lists (.md). This enables users to leverage Freeplane/Freemind for visual mind map creation and then convert these maps into formats suitable for embedding in documentation, especially in environments that support PlantUML rendering (e.g., GitLab, Confluence, Markdown viewers with Kroki integration) or plain Markdown workflows.
Features
- Convert Freeplane/Freemind (
.mm) to PlantUML (.puml). - Convert PlantUML (
.puml) to Freeplane/Freemind (.mm). - Convert Freeplane/Freemind (
.mm) to Markdown nested lists (.md). - Convert Markdown nested lists (
.md) to Freeplane/Freemind (.mm). - Supports both standard PlantUML syntax (
* Node) and legacy underscore syntax (*_ Node). - Hyperlink support across all formats.
- Command-line interface with proper argument parsing and auto-detection.
Installation
Prerequisites
- Python 3.x
From PyPI
pip install mindmapconverter
From Source
- Clone the repository:
git clone https://github.com/larkly/mindmapconverter.git cd mindmapconverter
- Install the package:
pip install .
Or for development (editable mode):pip install -e .
Usage
The script automatically detects the conversion direction based on the input file's extension. You can also use explicit flags to control the conversion.
Command Line Interface
python mindmapconverter.py input_file [-o output_file] [--to-md] [--from-md]
Converting Freeplane/Freemind to PlantUML
To convert a Freeplane/Freemind .mm file to PlantUML:
python mindmapconverter.py input_file.mm -o output_file.puml
Example:
python mindmapconverter.py my_mindmap.mm -o my_mindmap.puml
If -o is omitted, the output is printed to stdout:
python mindmapconverter.py my_mindmap.mm > my_mindmap.puml
Converting PlantUML to Freeplane/Freemind
To convert a PlantUML .puml file to Freeplane/Freemind XML:
python mindmapconverter.py input_file.puml -o output_file.mm
Example:
python mindmapconverter.py my_mindmap.puml -o my_mindmap.mm
Converting Freeplane/Freemind to Markdown
To convert a .mm file to a Markdown nested list:
python mindmapconverter.py input_file.mm --to-md -o output_file.md
Auto-detected when the output file has a .md extension:
python mindmapconverter.py my_mindmap.mm -o my_mindmap.md
Converting Markdown to Freeplane/Freemind
To convert a Markdown file to Freemind XML:
python mindmapconverter.py input_file.md -o output_file.mm
The .md extension is auto-detected, or you can use --from-md explicitly:
python mindmapconverter.py notes.md --from-md -o notes.mm
Markdown Format Specification
The Markdown mindmap format uses the following conventions:
- Root node: The first
# H1header becomes the root of the mindmap. - Child nodes: Nested unordered list items (
-,*, or+markers) represent child nodes. - Hierarchy: Indentation (2 spaces per level) determines the depth of each node.
- Links:
[text](url)Markdown links are converted to Freemind hyperlinks (hook elements). - Multiline text:
<br>tags in list items are converted to newlines in node text.
Example Markdown:
# Project Plan
- Phase 1
- Design
- Prototype
- Phase 2
- [Documentation](http://docs.example.com)
- Testing
- Unit Tests
- Integration Tests
Supported Syntax
The converter supports the standard PlantUML MindMap syntax using asterisks for hierarchy:
@startmindmap
* Root
** Child 1
** Child 2
*** Grandchild
@endmindmap
It also supports the legacy syntax with underscores (*_ Node).
Testing
To run the included unit tests:
python3 test_mindmapconverter.py
Contributing
Contributions are welcome! If you have suggestions for improvements, bug reports, or want to add new features, please feel free to:
- Fork the repository.
- Create a new branch (
git checkout -b feature/YourFeature). - Make your changes and add tests.
- Commit your changes (
git commit -m 'Add some feature'). - Push to the branch (
git push origin feature/YourFeature). - Open a Pull Request.
License
This project is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mindmapconverter-0.1.3.tar.gz.
File metadata
- Download URL: mindmapconverter-0.1.3.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d80febd490d4facc492905255b5ab3d641c16b300fa49fa4f7472bb017ce99e
|
|
| MD5 |
f060453d32df4a4a17bdd3c5641d9806
|
|
| BLAKE2b-256 |
d0371c837fee685773a269f6206acb36735c87099398549af4037de249a77c78
|
File details
Details for the file mindmapconverter-0.1.3-py3-none-any.whl.
File metadata
- Download URL: mindmapconverter-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
510b7649f3de17d0bb42ef6f1f58fafaf2b48feac796163523fe723def323bb6
|
|
| MD5 |
49eab0c1d69abaa974559c23c1151026
|
|
| BLAKE2b-256 |
399e07ff7e315f4d0629b5438035292e47578a8c34fffac449f721a51f0d5447
|