Simple application to help people migrate from Workflowy into VimWiki.
- Ensure you have Ruby installed (
sudo apt install ruby
). - Log into Workflowy and under settings choose "Export All".
- Ensure you have selected "OPML" and copy-paste all the data into a file on your system.
- Run the app in terminal (
./workflowy-converter.rb
), point it to the file with the OPML data and then point it to the folder you would like to contain the VimWiki.
Because Workflowy is uses a tree data structure, where VimWiki uses a graph data structure, there are some fundamental incompatibilities between the systems.
If you have any entries in Workflowy with the same title, VimWiki would treat these as the same entry and so lump all the data in the same file.
To overcome this, if the app ever comes across any entries that have the same title, it simply prepends the title with ">", to make it unique. It is not so pretty, but it is effective.