Re: [O] Help with tangling a table into a source-code representation of the data contained within

2014-02-25 Thread Rainer M Krug
t...@tsdye.com (Thomas S. Dye) writes: Aloha Grant, Grant Rettke g...@wisdomandwonder.com writes: Hi, My goal is to define a table in org-mode, display it nicely to humans using export, and tangle that same data table into an elisp data structure for use elsewhere within the program. It

Re: [O] Help with tangling a table into a source-code representation of the data contained within

2014-02-25 Thread Grant Rettke
Thanks everyone. My tentative plan is to run some elisp that will dump the table to an intermediate file and then dependent files may load it themselves.

Re: [O] Help with tangling a table into a source-code representation of the data contained within

2014-02-25 Thread Grant Rettke
This seems like a fine option: #+name: mode_data | mode | paredit | auto-save | |+-+---| | scheme | TRUE| TRUE | | emacs-lisp | TRUE| TRUE | | ielm | TRUE| FALSE | #+begin_src emacs-lisp :var data=mode_data :exports results

[O] Help with tangling a table into a source-code representation of the data contained within

2014-02-24 Thread Grant Rettke
Hi, My goal is to define a table in org-mode, display it nicely to humans using export, and tangle that same data table into an elisp data structure for use elsewhere within the program. It might look something like this: ;;; * Modes This is a place for humans to

Re: [O] Help with tangling a table into a source-code representation of the data contained within

2014-02-24 Thread Samuel Wales
radio tables might be another way. samuel On 2/24/14, Grant Rettke g...@wisdomandwonder.com wrote: Hi, My goal is to define a table in org-mode, display it nicely to humans using export, and tangle that same data table into an elisp data structure for use elsewhere within the program. It

Re: [O] Help with tangling a table into a source-code representation of the data contained within

2014-02-24 Thread Thomas S. Dye
Aloha Grant, Grant Rettke g...@wisdomandwonder.com writes: Hi, My goal is to define a table in org-mode, display it nicely to humans using export, and tangle that same data table into an elisp data structure for use elsewhere within the program. It might look something like this: