* Inline src block element not parsed correctly for export when in a list item
@ 2022-03-02 3:10 Kaushal Modi
2022-03-16 12:47 ` Kaushal Modi
2022-04-06 4:22 ` Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item) Ihor Radchenko
0 siblings, 2 replies; 5+ messages in thread
From: Kaushal Modi @ 2022-03-02 3:10 UTC (permalink / raw)
To: emacs-org list
Hello,
I believe I have come across a corner case issue where the inline src
block element doesn't get parsed as one, if:
1. That src block is in a list item (plain list, definition list, etc.), AND
2. That src block wraps around when auto-filling.
This issue can be reproduced on the main branch:
Org mode version 9.5 (release_9.5-505-gef666)
MWE:
=====
#+author:
#+options: toc:nil
Run ~C-c C-e t A~.
* Doesn't export correctly if inline src block is in a wrapped list
- abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
def][bar]]}.
* Exports correctly
** .. if the inline src block wraps in a paragraph
abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
def][bar]]}.
** .. if the inline src block is in a list but doesn't wrap
- abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc def][bar]]}.
=====
Upon pasting the above snippet in an Org buffer and running `C-c C-e t
A`, I get:
=====
Run `C-c C-e t A'.
1 Doesn't export correctly if inline src block is in a wrapped list
===================================================================
- abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
def][bar]]}.
2 Exports correctly
====================
2.1 .. if the inline src block wraps in a paragraph
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abcdefg abcdefg abcdefg abcdefg `[[abc def][bar]]'.
2.2 .. if the inline src block is in a list but doesn't wrap
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- abcdefg abcdefg abcdefg abcdefg `[[abc def][bar]]'.
=====
Note that incorrect export of the inline src block in section 1 above.
The remaining sections exports correctly because either the inline src
block is not in a list item, or it doesn't wrap to the next line.
--
Kaushal Modi
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Inline src block element not parsed correctly for export when in a list item
2022-03-02 3:10 Inline src block element not parsed correctly for export when in a list item Kaushal Modi
@ 2022-03-16 12:47 ` Kaushal Modi
2022-04-06 4:22 ` Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item) Ihor Radchenko
1 sibling, 0 replies; 5+ messages in thread
From: Kaushal Modi @ 2022-03-16 12:47 UTC (permalink / raw)
To: emacs-org list
[-- Attachment #1: Type: text/plain, Size: 2061 bytes --]
Hello,
Just pinging here again. Can someone confirm this bug?
--
Kaushal Modi
On Tue, Mar 1, 2022, 10:10 PM Kaushal Modi <kaushal.modi@gmail.com> wrote:
> Hello,
>
> I believe I have come across a corner case issue where the inline src
> block element doesn't get parsed as one, if:
>
> 1. That src block is in a list item (plain list, definition list, etc.),
> AND
> 2. That src block wraps around when auto-filling.
>
> This issue can be reproduced on the main branch:
>
> Org mode version 9.5 (release_9.5-505-gef666)
>
> MWE:
>
> =====
> #+author:
> #+options: toc:nil
>
> Run ~C-c C-e t A~.
>
> * Doesn't export correctly if inline src block is in a wrapped list
> - abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
> def][bar]]}.
> * Exports correctly
> ** .. if the inline src block wraps in a paragraph
> abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
> def][bar]]}.
> ** .. if the inline src block is in a list but doesn't wrap
> - abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc def][bar]]}.
> =====
>
> Upon pasting the above snippet in an Org buffer and running `C-c C-e t
> A`, I get:
>
> =====
> Run `C-c C-e t A'.
>
>
> 1 Doesn't export correctly if inline src block is in a wrapped list
> ===================================================================
>
> - abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
> def][bar]]}.
>
>
> 2 Exports correctly
> ====================
>
> 2.1 .. if the inline src block wraps in a paragraph
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> abcdefg abcdefg abcdefg abcdefg `[[abc def][bar]]'.
>
>
> 2.2 .. if the inline src block is in a list but doesn't wrap
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> - abcdefg abcdefg abcdefg abcdefg `[[abc def][bar]]'.
> =====
>
>
> Note that incorrect export of the inline src block in section 1 above.
> The remaining sections exports correctly because either the inline src
> block is not in a list item, or it doesn't wrap to the next line.
>
> --
> Kaushal Modi
>
[-- Attachment #2: Type: text/html, Size: 2707 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item)
2022-03-02 3:10 Inline src block element not parsed correctly for export when in a list item Kaushal Modi
2022-03-16 12:47 ` Kaushal Modi
@ 2022-04-06 4:22 ` Ihor Radchenko
2022-05-14 9:40 ` Ihor Radchenko
1 sibling, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2022-04-06 4:22 UTC (permalink / raw)
To: Kaushal Modi; +Cc: emacs-org list
Confirmed.
Interestingly, I cannot reproduce the bug using my personal branch at
https://github.com/yantar92/org. The fix should be lurking somewhere
close...
Kaushal Modi <kaushal.modi@gmail.com> writes:
> I believe I have come across a corner case issue where the inline src
> block element doesn't get parsed as one, if:
The element actually does get parsed. Once can check it by running M-:
(org-element-context) with point at the problematic inline src block.
However, the export is somehow broken.
> * Doesn't export correctly if inline src block is in a wrapped list
> - abcdefg abcdefg abcdefg abcdefg src_org[:exports code]{[[abc
> def][bar]]}.
One observation is that export is again correct if I remove a '[' in the
link inside inline source block.
Best,
Ihor
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item)
2022-04-06 4:22 ` Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item) Ihor Radchenko
@ 2022-05-14 9:40 ` Ihor Radchenko
2022-05-16 2:51 ` Kaushal Modi
0 siblings, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2022-05-14 9:40 UTC (permalink / raw)
To: Kaushal Modi; +Cc: emacs-org list
Ihor Radchenko <yantar92@gmail.com> writes:
> Confirmed.
>
> Interestingly, I cannot reproduce the bug using my personal branch at
> https://github.com/yantar92/org. The fix should be lurking somewhere
> close...
I just tried again on the latest main and I cannot reproduce anymore.
Though I do see the problem on bugfix.
Can you please check again on your side?
Best,
Ihor
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item)
2022-05-14 9:40 ` Ihor Radchenko
@ 2022-05-16 2:51 ` Kaushal Modi
0 siblings, 0 replies; 5+ messages in thread
From: Kaushal Modi @ 2022-05-16 2:51 UTC (permalink / raw)
To: Ihor Radchenko; +Cc: emacs-org list
On Sat, May 14, 2022 at 5:39 AM Ihor Radchenko <yantar92@gmail.com> wrote:
>
> I just tried again on the latest main and I cannot reproduce anymore.
> Though I do see the problem on bugfix.
>
> Can you please check again on your side?
I confirm -- I cannot reproduce the bug in Org mode version 9.5.3
(release_9.5.3-482-gd5a52b).
For reference, I tried the same bug recipe from my earlier email:
https://lists.gnu.org/r/emacs-orgmode/2022-03/msg00008.html.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-05-16 2:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-02 3:10 Inline src block element not parsed correctly for export when in a list item Kaushal Modi
2022-03-16 12:47 ` Kaushal Modi
2022-04-06 4:22 ` Inline src org block element with containing inside item does not get exported when it contains a newline (was: Inline src block element not parsed correctly for export when in a list item) Ihor Radchenko
2022-05-14 9:40 ` Ihor Radchenko
2022-05-16 2:51 ` Kaushal Modi
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).