From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Eckl Subject: Re: Export org-mode buffer to dynamic html document (collapse/expand details) Date: Thu, 31 Jul 2014 18:50:21 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCtYl-0005cG-S2 for emacs-orgmode@gnu.org; Thu, 31 Jul 2014 12:50:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XCtYg-0002oF-I5 for emacs-orgmode@gnu.org; Thu, 31 Jul 2014 12:50:31 -0400 Received: from cs2.davando.de ([87.106.234.140]:41065) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCtYg-0002ni-6P for emacs-orgmode@gnu.org; Thu, 31 Jul 2014 12:50:26 -0400 Received: from iMac.local (p549915E6.dip0.t-ipconnect.de [84.153.21.230]) by cs2.davando.de (Postfix) with ESMTPA id 9A1C13A871 for ; Thu, 31 Jul 2014 18:50:22 +0200 (CEST) In-Reply-To: (Martin Beck's message of "Thu, 31 Jul 2014 17:50:03 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org "Martin Beck" writes: > Hi, > I'm sorry, if this might be obvious, but I don't have much experience > with org-mode export up to now and I urgently need to export much > information from my notes and task lists in org-mode in a way that my > colleagues (no experience with Emacs / org-mode at all) can use it > during my absence. > Therefore I need some advice from you: > I have a lot of projects (hierarchically structured in headings with > todo keywords, sub-headings, hyperlinks, notes, etc.) > I want to export all this information into a text format to make it > usable for my colleagues. > However, there is A WHOLE LOT of text and to make it the least > confusing possible, > it would be great if the text below headings could be collapsed > somehow or if there was an overview page listing all projects and some > important sub-headings or remarks and a hyperlink pointing to the > detailed notes concerning this project. > Any hints appreciated I would recommend a look into https://github.com/SebastianRose/org-info-js/tree/master or http://orgmode.org/worg/code/org-info-js/index.org.html There are described various possible views in html with folding/unfolding, similar emacs folding. You can switch between the views with "m", goto (n)ext or (p)revious item, help with ? IIRC You can realize this with the follwoing to lines in your org-file and export this to html with c-c c-e h h (or o): #+HTML_HEAD_EXTRA: #+INFOJS_OPT: view:info toc:nil ftoc:yes ltoc:above mouse:underline buttons:0 path:http://orgmode.org/org-info.js The above lines make the toc flowing like www.orgmode.org/worg. The most important keys for navigating i would mention at the begin of the page. HTH, Robert