* test #+NAME: table-one #+BEGIN_SRC emacs-lisp (list '(a) '(b) 'hline '(c)) #+END_SRC #+results: table-one | a | | b | |---| | c | #+NAME: table-two-without #+CALL: table-one() #+results: table-two-without | a | | b | | c | #+NAME: table-two-with #+CALL: table-one() :hlines yes #+results: table-two-with | a | | b | |---| | c |