emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [PATCH] (fixed) ox-confluence.el: Do not generate filled paragra


From: Nicolas Goaziou
Subject: Re: [O] [PATCH] (fixed) ox-confluence.el: Do not generate filled paragraphs
Date: Fri, 04 Mar 2016 01:42:41 +0100

Hello,

"M. P. Ashton" <address@hidden> writes:

> * 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)

This function doesn't unfill the paragraph. It merely returns it as it
was in the original Org document. You possibly want to call
`replace-regexp-in-string' and replace "\n" with " " in CONTENTS.

I'm Cc'ing the author since this is a contrib/ package.

Regards,

-- 
Nicolas Goaziou



reply via email to

[Prev in Thread] Current Thread [Next in Thread]