From mboxrd@z Thu Jan 1 00:00:00 1970 From: Timothy Aldrich Subject: Carriage return in macro Date: Fri, 23 Aug 2013 16:04:29 -0400 Message-ID: <87txig8982.fsf@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57175) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCxb4-000113-E2 for emacs-orgmode@gnu.org; Fri, 23 Aug 2013 16:04:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VCxaw-0002Ew-0D for emacs-orgmode@gnu.org; Fri, 23 Aug 2013 16:04:38 -0400 Received: from mail-qc0-x22b.google.com ([2607:f8b0:400d:c01::22b]:50771) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCxav-0002En-SS for emacs-orgmode@gnu.org; Fri, 23 Aug 2013 16:04:29 -0400 Received: by mail-qc0-f171.google.com with SMTP id n1so588222qcw.30 for ; Fri, 23 Aug 2013 13:04:29 -0700 (PDT) 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 Hello all. I have a simple macro defined to simplify the inclusion of a style for odt-export. It looks like this: #+MACRO: HEADING #+ODT:$1 and then to add this style to any text within the document, I simply call it like this: {{{HEADING( A really great headline )}}} This is all fine... Until I want to apply the same process to a multi-line section. I end up with several macro calls , one per line. {{{BODY(line one of body)}}} {{{BODY(line two of body)}}} {{{BODY(line three of body)}}} {{{BODY(line four of body)}}} Is there any way to have carriage returns within the text of the macro ? I have already tried using the #+BEGIN_ODT...#+END_ODT construct, but that *really* messes with the format of the text within it. -Tim