Accessories: Difference between revisions
From FreeMind
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 91: | Line 91: | ||
*[http://code.google.com/p/mind-listening Mind Listening?]: Enhance Freemind by recording audio while creating a mind map. While reviewing a mind map, highlighting a node instantly jumps the audio to the point when the node was created. Uses include meeting notes, brainstorming sessions, meeting clients, lecture notes and agile development. | *[http://code.google.com/p/mind-listening Mind Listening?]: Enhance Freemind by recording audio while creating a mind map. While reviewing a mind map, highlighting a node instantly jumps the audio to the point when the node was created. Uses include meeting notes, brainstorming sessions, meeting clients, [http://www.tendances-de-mode.com/2010/02/08/1639-zara-collection-printemps-ete-2010 zara 2010],lecture notes and agile development. | ||
* 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. |
Revision as of 14:39, 24 May 2010
What follows is a list of FreeMind accessories, provided by third parties. Feel free to add your own accessory. When adding a new link to an accessory you are the author of, please consider releasing your accessory by "GNU GPL V2 or later at your option" license. When you do, the FreeMind team can consider delivering your accessory as part of FreeMind. Conversions
See also Other
sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\)=\"[0-9a-zA-Z_]*\"//g" Old.mm > New.xml For version 0.9, this command is better : sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\|COLOR\)=\"#\?[0-9a-zA-Z_]*\"//g" -e "s/<\(font\|hook\)[^>]\+\?>//g" Old.mm > New.xml |