Accessories: Difference between revisions
From FreeMind
Jump to navigationJump to search
Rladstaetter (talk | contribs) No edit summary |
(Added two utilities that I made) |
||
Line 18: | Line 18: | ||
* Below is a Unix <tt>sed</tt> command to remove the optional data from a MindMap .mm file's XML to make it more reader-friendly, keeping only the TEXT attribute. After converting a MindMap file with this command, you can open the generated XML file in Firefox and use its XML element collapsing features to interactively view MindMaps even without Freemind installed! | * Below is a Unix <tt>sed</tt> command to remove the optional data from a MindMap .mm file's XML to make it more reader-friendly, keeping only the TEXT attribute. After converting a MindMap file with this command, you can open the generated XML file in Firefox and use its XML element collapsing features to interactively view MindMaps even without Freemind installed! | ||
<tt>sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\)=\"[0-9a-zA-Z_]*\"//g" YourFileName.mm > NewFileName.xml</tt> | <tt>sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\)=\"[0-9a-zA-Z_]*\"//g" YourFileName.mm > NewFileName.xml</tt> | ||
* [http://code.google.com/p/mm2notes mm2notes] Creates '''meeting notes''' from your meeting. | |||
* [http://code.google.com/p/mm2s5 mm2s5] Creates an [http://meyerweb.com/eric/tools/s5/ S5] '''presentation''' from a FreeMind file. | |||
</table> | </table> |
Revision as of 18:45, 23 April 2007
What follows is a list of FreeMind accessories, provided by third parties. (Feel free to add your own accessory.)
sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\)=\"[0-9a-zA-Z_]*\"//g" YourFileName.mm > NewFileName.xml |