HTML export
From FreeMind
(Difference between revisions)
m (Reverted edit of Yvyfyjeh, changed back to last version by Dan Polansky) |
Dan Polansky (Talk | contribs) (revert to last full version; added limitations missing) |
||
Line 1: | Line 1: | ||
+ | FreeMind makes it possible to export mind maps and their branches to HTML. | ||
+ | |||
+ | ''TO DO: Describe how to export to HTML and what user options there are.'' | ||
+ | |||
==Menu== | ==Menu== | ||
* File > Export > As HTML | * File > Export > As HTML | ||
Line 4: | Line 8: | ||
* File > Export > As XHTML (Clickable map image version) | * File > Export > As XHTML (Clickable map image version) | ||
* File > Export > Branch as HTML | * File > Export > Branch as HTML | ||
+ | |||
+ | ==Keyboard== | ||
+ | |||
+ | * Control + E: Export as HTML | ||
+ | * Control + H: Export Branch as HTML | ||
+ | |||
+ | ==Settings== | ||
+ | |||
+ | * html_export_folding[http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind/preferences/layout/OptionPanel.java?view=log] | ||
+ | ** Values: | ||
+ | *** "html_export_no_folding" | ||
+ | *** "html_export_fold_currently_folded" | ||
+ | *** "html_export_fold_all" | ||
+ | *** "html_export_based_on_headings" | ||
+ | * export_icons_in_html[http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind.properties?view=log] | ||
+ | ** Default: false | ||
+ | |||
+ | ==Implementation== | ||
+ | * [http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind/modes/mindmapmode/MindMapHTMLWriter.java?view=log MindMapHTMLWriter] | ||
+ | * MindMapController.ExportToHTMLAction | ||
+ | * MindMapController.ExportBranchToHTMLAction | ||
+ | * MindMapController.saveHTML | ||
+ | |||
+ | CVS: | ||
+ | * [http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind/modes/mindmapmode/MindMapHTMLWriter.java?view=log MindMapHTMLWriter] | ||
+ | * [http://freemind.cvs.sourceforge.net/viewvc/freemind/freemind/freemind/modes/mindmapmode/MindMapController.java?view=log MindMapController] | ||
+ | |||
+ | ==Forums== | ||
+ | * [http://sourceforge.net/forum/message.php?msg_id=4589967 HTML export no longer as a list], 2007-10-26 | ||
+ | * [http://sourceforge.net/search/index.php?group_id=7118&search_subject=1&search_body=1&type_of_search=forums&all_words=export+html&exact_phrase=&some_word=&without_words=&forum_id=22101&posted_by=&posted_date_start=&posted_date_end=&form_submit=Search Search for export HTML] | ||
+ | [[Category:Development]] |
Latest revision as of 12:24, 22 November 2010
FreeMind makes it possible to export mind maps and their branches to HTML.
TO DO: Describe how to export to HTML and what user options there are.
Contents |
Menu
- File > Export > As HTML
- File > Export > As XHTML (JavaScript version)
- File > Export > As XHTML (Clickable map image version)
- File > Export > Branch as HTML
Keyboard
- Control + E: Export as HTML
- Control + H: Export Branch as HTML
Settings
- html_export_folding[1]
- Values:
- "html_export_no_folding"
- "html_export_fold_currently_folded"
- "html_export_fold_all"
- "html_export_based_on_headings"
- Values:
- export_icons_in_html[2]
- Default: false
Implementation
- MindMapHTMLWriter
- MindMapController.ExportToHTMLAction
- MindMapController.ExportBranchToHTMLAction
- MindMapController.saveHTML
CVS: