#+OPTIONS: html-postamble:auto html-preamble:t tex:t #+CREATOR: Emacs 23.3.1 (Org mode 8.0.2) #+HTML_CONTAINER: div #+HTML_DOCTYPE: xhtml-strict #+EXCLUDE_TAGS: noexport * Table test After running the script, I expect the existing table (with 1, 2, 3 in the second column) to be replaced by the new table data (10, 20, 30). #+name: gettable1 #+begin_src emacs-lisp :exports none (... don't know what to write in here...) #+end_src #+name: table1 #+ATTR_HTML: :border 2 :rules all :frame border | Simple | Table | |--------+-------| | 1 | 1 | | 2 | 2 | | 3 | 3 |