Matt <m...@excalamus.com> writes: > ... According to my notes, :sep and :separator don't work for > anything beyond basic table layout. I'm not familiar with org-table > and there isn't much documentation on those keywords in the manual. > The :sep keyword shows up for Texinfo and LaTeX. It looks like :sep is > used for export? It's not clear to me how they're supposed to work > with shell block output, or if that was even a consideration at all. > > They were added in > https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=a60a83fbb65a368bb96ea6aaf1db20706b3e99c5 > claiming "better handling of table in shell scripts" So, it looks like > their inclusion was intentional. > > Maybe someone has deeper insights?
:sep header argument is used to format table result when writing to file: By default, Org assumes that a table written to a file has TAB-delimited output. You can choose a different separator with the ‘sep’ header argument. "16.6 Results of Evaluation" section of the manual. It is only relevant when you have :results file and the evaluation results are redirected to file instead of Org buffer. :sep header argument is universal to all babel backends. :separator argument is used in ob-sqlite and ob-shell. However, it means different things in ob-sqlite vs. ob-shell. In ob-sqlite, :separator argument is defining how sqlite formats its output. AFAIU, it is only needed when sql table data contains "|" - the default separator. In ob-shell, :separator argument is _not_ used to format the output. Instead, it is used to control how ob-shell passes Elisp data shell variables. However, it is almost never used in practice (also, it is not documented) - :separator argument only affects how deeply nested Elisp lists are converted to bash data: #+begin_src bash :var x='((((1 1)) 3) (4 5)) :results output :cache no :separator "+" echo keys: ${!x[@]} echo values: ${x[@]} #+end_src #+RESULTS[7de8e7c561edda2dce18a302f4d8beb8a51595df]: : keys: 4 1+1 : values: 5 3 Normal two-dimentional tables and lists are handled without being affected by :separator. -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>