* org-maint exporting ignores \n in python babel output ascii export; org-master doesn't though
@ 2014-07-24 7:41 Miguel Ruiz
2014-07-25 7:53 ` Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks Miguel Ruiz
0 siblings, 1 reply; 6+ messages in thread
From: Miguel Ruiz @ 2014-07-24 7:41 UTC (permalink / raw)
To: orgmode mailing list
#+BEGIN_SRC python :exports results :results raw
return "Hello\nBye"
#+END_SRC
exports as:
Hello Bye
with org-ascii-export-as/to-ascii (Org-mode version 8.2.7b (release_8.2.7b-5-gc9613c))
But it exports correctly with Org-mode version 8.3beta (release_8.3beta-56-gdb0130)
Miguel.
____________________________________________________________
Protect your computer files with professional cloud backup.
Get PCRx Backup and upload unlimited files automatically.
Learn more at http://backup.pcrx.com/mail
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks
2014-07-24 7:41 org-maint exporting ignores \n in python babel output ascii export; org-master doesn't though Miguel Ruiz
@ 2014-07-25 7:53 ` Miguel Ruiz
2014-07-25 7:58 ` Miguel Ruiz
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Miguel Ruiz @ 2014-07-25 7:53 UTC (permalink / raw)
To: orgmode mailing list
After more detailed review I have figure out that the problem more generic and the opposite of the exposed in my previous message:
- org-maint ascii exporter takes org-export-preserve-breaks into account (default is nil; it works as expected, both nil and t)
- org-master ascii exporter doesn't take org-export-preserve-breaks into account (default is nil, it always preserves breaks)
- Minimal example:
#8<----------------------------->8
hello
bye
#8<----------------------------->8
and M-x org-ascii-export-as-ascii.
- Org-maint (org-export-preserve-breaks nil) output:
hello bye
- Org-maint (org-export-preserve-breaks nil) output:
hello
bye
HTH
Miguel.
> -----Original Message-----
> From: rbenit68@inbox.com
> Sent: Wed, 23 Jul 2014 23:41:09 -0800
> To: emacs-orgmode@gnu.org
> Subject: [O] org-maint exporting ignores \n in python babel output ascii
> export; org-master doesn't though
>
> #+BEGIN_SRC python :exports results :results raw
> return "Hello\nBye"
> #+END_SRC
>
> exports as:
>
> Hello Bye
>
> with org-ascii-export-as/to-ascii (Org-mode version 8.2.7b
> (release_8.2.7b-5-gc9613c))
>
> But it exports correctly with Org-mode version 8.3beta
> (release_8.3beta-56-gdb0130)
>
>
>
> Miguel.
>
> ____________________________________________________________
> Protect your computer files with professional cloud backup.
> Get PCRx Backup and upload unlimited files automatically.
> Learn more at http://backup.pcrx.com/mail
____________________________________________________________
FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
Check it out at http://www.inbox.com/earth
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks
2014-07-25 7:53 ` Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks Miguel Ruiz
@ 2014-07-25 7:58 ` Miguel Ruiz
2014-07-25 12:07 ` Nicolas Goaziou
2014-09-05 21:09 ` Yijun Yuan
2 siblings, 0 replies; 6+ messages in thread
From: Miguel Ruiz @ 2014-07-25 7:58 UTC (permalink / raw)
To: orgmode mailing list
Sorry: last block, I meant
- Org-master (org-export-preserve-breaks nil) output:
hello
bye
> -----Original Message-----
> From: rbenit68@inbox.com
> Sent: Thu, 24 Jul 2014 23:53:57 -0800
> To: emacs-orgmode@gnu.org
> Subject: Re: [O] Bug: org-master (release_8.3beta-56-gdb0130) ascii
> exporter ignores org-export-preserve-breaks
>
> After more detailed review I have figure out that the problem more
> generic and the opposite of the exposed in my previous message:
>
> - org-maint ascii exporter takes org-export-preserve-breaks into account
> (default is nil; it works as expected, both nil and t)
>
> - org-master ascii exporter doesn't take org-export-preserve-breaks into
> account (default is nil, it always preserves breaks)
>
> - Minimal example:
>
> #8<----------------------------->8
>
> hello
> bye
>
> #8<----------------------------->8
>
> and M-x org-ascii-export-as-ascii.
>
> - Org-maint (org-export-preserve-breaks nil) output:
>
> hello bye
>
> - Org-maint (org-export-preserve-breaks nil) output:
>
> hello
> bye
>
>
> HTH
>
> Miguel.
>
>
>> -----Original Message-----
>> From: rbenit68@inbox.com
>> Sent: Wed, 23 Jul 2014 23:41:09 -0800
>> To: emacs-orgmode@gnu.org
>> Subject: [O] org-maint exporting ignores \n in python babel output ascii
>> export; org-master doesn't though
>>
>> #+BEGIN_SRC python :exports results :results raw
>> return "Hello\nBye"
>> #+END_SRC
>>
>> exports as:
>>
>> Hello Bye
>>
>> with org-ascii-export-as/to-ascii (Org-mode version 8.2.7b
>> (release_8.2.7b-5-gc9613c))
>>
>> But it exports correctly with Org-mode version 8.3beta
>> (release_8.3beta-56-gdb0130)
>>
>>
>>
>> Miguel.
>>
>> ____________________________________________________________
>> Protect your computer files with professional cloud backup.
>> Get PCRx Backup and upload unlimited files automatically.
>> Learn more at http://backup.pcrx.com/mail
>
> ____________________________________________________________
> FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
> Check it out at http://www.inbox.com/earth
____________________________________________________________
Send any screenshot to your friends in seconds...
Works in all emails, instant messengers, blogs, forums and social networks.
TRY IM TOOLPACK at http://www.imtoolpack.com/default.aspx?rc=if2 for FREE
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks
2014-07-25 7:53 ` Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks Miguel Ruiz
2014-07-25 7:58 ` Miguel Ruiz
@ 2014-07-25 12:07 ` Nicolas Goaziou
2014-09-05 21:09 ` Yijun Yuan
2 siblings, 0 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2014-07-25 12:07 UTC (permalink / raw)
To: Miguel Ruiz; +Cc: orgmode mailing list
Hello,
Miguel Ruiz <rbenit68@inbox.com> writes:
> After more detailed review I have figure out that the problem more generic and the opposite of the exposed in my previous message:
>
> - org-maint ascii exporter takes org-export-preserve-breaks into account (default is nil; it works as expected, both nil and t)
>
> - org-master ascii exporter doesn't take org-export-preserve-breaks into account (default is nil, it always preserves breaks)
>
> - Minimal example:
>
> #8<----------------------------->8
>
> hello
> bye
>
> #8<----------------------------->8
>
> and M-x org-ascii-export-as-ascii.
>
> - Org-maint (org-export-preserve-breaks nil) output:
>
> hello bye
>
> - Org-maint (org-export-preserve-breaks nil) output:
>
> hello
> bye
This should now be fixed. Thank you for reporting it.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks
2014-07-25 7:53 ` Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks Miguel Ruiz
2014-07-25 7:58 ` Miguel Ruiz
2014-07-25 12:07 ` Nicolas Goaziou
@ 2014-09-05 21:09 ` Yijun Yuan
2014-09-06 8:36 ` Nicolas Goaziou
2 siblings, 1 reply; 6+ messages in thread
From: Yijun Yuan @ 2014-09-05 21:09 UTC (permalink / raw)
To: emacs-orgmode
Miguel Ruiz <rbenit68 <at> inbox.com> writes:
>
> After more detailed review I have figure out that the problem more generic
and the opposite of the exposed in
> my previous message:
>
> - org-maint ascii exporter takes org-export-preserve-breaks into account
(default is nil; it works as
> expected, both nil and t)
>
> - org-master ascii exporter doesn't take org-export-preserve-breaks into
account (default is nil, it
> always preserves breaks)
>
The commit b15a9c0c1 breaks my use case. In the document of option "Org
Export Preserve Breaks", ASCII export is explicitly mentioned: "In ASCII
export, line breaks will always be preserved, regardless of this variable."
Thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks
2014-09-05 21:09 ` Yijun Yuan
@ 2014-09-06 8:36 ` Nicolas Goaziou
0 siblings, 0 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2014-09-06 8:36 UTC (permalink / raw)
To: Yijun Yuan; +Cc: emacs-orgmode
Hello,
Yijun Yuan <bbbush@fedoraproject.org> writes:
> The commit b15a9c0c1 breaks my use case. In the document of option "Org
> Export Preserve Breaks", ASCII export is explicitly mentioned: "In ASCII
> export, line breaks will always be preserved, regardless of this
> variable."
This is not true anymore since Org 8.0. Line breaks are not preserved in
ASCII export unless the appropriate variable is non-nil (which is not
the case by default).
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-09-06 8:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-24 7:41 org-maint exporting ignores \n in python babel output ascii export; org-master doesn't though Miguel Ruiz
2014-07-25 7:53 ` Bug: org-master (release_8.3beta-56-gdb0130) ascii exporter ignores org-export-preserve-breaks Miguel Ruiz
2014-07-25 7:58 ` Miguel Ruiz
2014-07-25 12:07 ` Nicolas Goaziou
2014-09-05 21:09 ` Yijun Yuan
2014-09-06 8:36 ` Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).