all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "M. P. Ashton" <data@gtf.org>
To: emacs-orgmode@gnu.org
Subject: [PATCH] (fixed) ox-confluence.el: Do not generate filled paragraphs
Date: Thu, 03 Mar 2016 16:55:45 -0500	[thread overview]
Message-ID: <1457042145.2169185.539000906.0E8F7FBC@webmail.messagingengine.com> (raw)

* contrib/lisp/ox-confluence.el: Do not generate filled paragraphs

ox-confluence was generating filled paragraphs.  Since Confluence treats
each newline as a line break, this caused unexpected formatting.  Added
a paragraph function to generate unfilled paragraphs (taken from
ox-md.el).
---
 contrib/lisp/ox-confluence.el | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/contrib/lisp/ox-confluence.el
b/contrib/lisp/ox-confluence.el
index 9b96d5f..4304e5d 100644
--- a/contrib/lisp/ox-confluence.el
+++ b/contrib/lisp/ox-confluence.el
@@ -47,6 +47,7 @@
                     (italic . org-confluence-italic)
                      (item . org-confluence-item)
                     (link . org-confluence-link)
+                     (paragraph . org-confluence-paragraph)
                     (property-drawer . org-confluence-property-drawer)
                     (section . org-confluence-section)
                     (src-block . org-confluence-src-block)
@@ -58,6 +59,12 @@
                     (underline . org-confluence-underline)))

 ;; All the functions we use
+(defun org-confluence-paragraph (paragraph contents info)
+  "Transcode PARAGRAPH element for Confluence.
+CONTENTS is the paragraph contents.  INFO is a plist used as
+a communication channel."
+  contents)
+
 (defun org-confluence-bold (bold contents info)
   (format "*%s*" contents))

--
(previous patch was cut off)

             reply	other threads:[~2016-03-03 21:55 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-03 21:55 M. P. Ashton [this message]
2016-03-04  0:42 ` [PATCH] (fixed) ox-confluence.el: Do not generate filled paragraphs Nicolas Goaziou
2016-03-04  2:41   ` M. P. Ashton
2016-03-04 10:20     ` Sébastien Delafond
2016-03-16 21:37     ` Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1457042145.2169185.539000906.0E8F7FBC@webmail.messagingengine.com \
    --to=data@gtf.org \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.