Re: [BUG] Documentation for #+INCLUDE: does not specify order when exporting [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2024-02-12 Thread Ihor Radchenko
Ihor Radchenko writes: >> But I do think it would be helpful if the "order" while ex- >> porting would be documented in a meaningful way. Details of the export flow have been added to the manual. https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=46cf76259

Re: [BUG] Documentation for #+INCLUDE: does not specify order when exporting [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-08 Thread Ihor Radchenko
Tim Landscheidt writes: > But why did I spend a few hours debugging this before final- > ly understanding Org's mode of operation? The first sen- > tence of the documentation in "13.4 Include Files" reads: > > | During export, you can include the content of another file. > | […] > > I'm not a

[BUG] Documentation for #+INCLUDE: does not specify order when exporting [9.5.5 (release_9.5.5 @ /usr/share/emacs/28.2/lisp/org/)]

2023-04-08 Thread Tim Landscheidt
With the Org file: | #+BEGIN_SRC python :results silent :exports results | test = '1' | with open('test-a.log', 'w') as f: | f.write(f'Test {test}a\n') | with open('test-b.log', 'w') as f: | f.write(f'Test {test}b\n') | #+END_SRC | Test, part A: | #+INCLUDE: "test-a.log"