From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Braennstroem Subject: Re: export all linked images with a certain property or tag Date: Mon, 01 Oct 2007 20:34:26 +0000 Message-ID: References: <87sl4ug3z3.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IcQ5a-0008LN-Eu for emacs-orgmode@gnu.org; Mon, 01 Oct 2007 14:33:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IcQ5X-0008L2-Cs for emacs-orgmode@gnu.org; Mon, 01 Oct 2007 14:33:53 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IcQ5X-0008Kx-7Q for emacs-orgmode@gnu.org; Mon, 01 Oct 2007 14:33:51 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IcQ5W-0004pe-N6 for emacs-orgmode@gnu.org; Mon, 01 Oct 2007 14:33:50 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IcQ5H-0000Fg-68 for emacs-orgmode@gnu.org; Mon, 01 Oct 2007 18:33:35 +0000 Received: from pd9e4bf9a.dip0.t-ipconnect.de ([217.228.191.154]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 01 Oct 2007 18:33:35 +0000 Received: from f.braennstroem by pd9e4bf9a.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 01 Oct 2007 18:33:35 +0000 In-Reply-To: <87sl4ug3z3.fsf@bzg.ath.cx> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Bastien, Bastien schrieb am 10/01/2007 05:05 PM: > Fabian Braennstroem writes: > >> I am looking for a way to export linked images with a certain property >> to html. > > More generally, we could implement a way to restrict the exported text > to some headlines, given certain conditions on the headline itself (and > its text properties) and the properties in :PROPERTIES:. > > Would that suit your specific needs? Sounds good for me, maybe it would be good to add some kind off 'comment-region', which will not be exported by default. A small example: * Pictures ** Germany :Project1: :PROPERTIES: :Datum:2007 :END: |-- Some Comment Begin ------------------------ - some text |-- Some Comment End ------------------------ [[file:image.png]] |-- Some Comment Begin ------------------------ - some text |-- Some Comment End ------------------------ The html file would just show: * Pictures ** Germany :Project1: :PROPERTIES: :Datum:2007 :END: [[file:image.png]] This would be great for me ... but than it probably even easier to just extract the picture and properties... Another and maybe easier way for the export could be to define the number of levels of a searched tag; then I would reorganize my structure a bit: * Pictures ** Germany :Project1: :PROPERTIES: :Datum:2007 :END: [[file:image.png]] -some text *** new level - some text *** new level 2 - some text The html export with an argument of '2' could look like: * Pictures ** Germany :Project1: :PROPERTIES: :Datum:2007 :END: [[file:image.png]] -some text This is probably easiest to implement and yet pretty powerfull!? Greetings! Fabian