Skip to content

Instantly share code, notes, and snippets.

@cabo
Created February 2, 2012 16:26
Show Gist options
  • Save cabo/1724382 to your computer and use it in GitHub Desktop.
Save cabo/1724382 to your computer and use it in GitHub Desktop.
Convert a freemind mindmap to Emacs org/outline text
#!/opt/local/bin/ruby1.9
require 'nokogiri'
doc = Nokogiri::XML(ARGF).css("node").each do |node|
if t = node["TEXT"]
puts "#{"*" * node.ancestors("node").size}* #{t}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment