I just found the org-babel-min-lines-for-block-output variable.
#+RESULTS: people-table
| User | ID | Homepage |
|-------+----+--------------------------|
And a code block like this:
#+begin_src python :var people=people-table :results output
for i, person in enumerate(people):
print('- ' + person[0])
print(" " + person[2])
#+end_src
I would like to set org-babel-min-lines-for-block-output variable for
only the above code block. Is this possible using #+property or something like that?
Or do I need to have a "wrapper" elisp block around my python code?
Thanks,
--Nate