Jarmo Hurri <jarmo.hu...@syk.fi> writes: > Greetings. > > While taking my first long tour in the land of Babel, I bumped into a > minor hline issue. Can someone tell me why the hline has disappeared > from the second table?
Because you use CALL without arguments and argument :hlines defaults to 'no'? > # ------------------------------------------------------------------ > * test > #+NAME: table-one > #+BEGIN_SRC emacs-lisp > (list '(a) '(b) 'hline '(c)) > #+END_SRC > > #+RESULTS: table-one > | a | > | b | > |---| > | c | > > > #+NAME: table-two > #+CALL: table-one() > #+RESULTS: table-two > | a | > | b | > | c | > > #+NAME: table-three > #+CALL: table-one[:results raw]() > #+RESULTS: table-three > : ((a) (b) hline (c)) > > # ------------------------------------------------------------------ -- cheers, Thorsten