Re: [O] [Feature Request] Cross headings in tables

2013-02-23 Thread Bastien
Achim Gratz strom...@nexgo.de writes: But going this route takes us even further from Your life in plain text. towards Your life in another programming language. because you will need a special viewer or editor to make sense of it for all but the most trivial cases. Point taken too -- this

Re: [O] [Feature Request] Cross headings in tables

2013-02-23 Thread Achim Gratz
Nicolas Goaziou writes: I think the cleanest way to implement this would be to _not_ modify Org syntax, because it is export back-end very specific. Something like: #+attr_html: :header-groups (1 3) | This | will | | be| a header | |---+---| |

Re: [O] [Feature Request] Cross headings in tables

2013-02-22 Thread Carsten Dominik
On 17 feb. 2013, at 09:35, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Achim Gratz strom...@nexgo.de writes: I've just looked at how to implement this using org-element and the new exporter. Much to my dismay I found that table headers are not a separate row or row group type and

Re: [O] [Feature Request] Cross headings in tables

2013-02-22 Thread Achim Gratz
Carsten Dominik writes: I think the cleanest way to implement this would be to _not_ modify Org syntax, because it is export back-end very specific. Something like: #+attr_html: :header-groups (1 3) | This | will | | be| a header | |---+---| | This

Re: [O] [Feature Request] Cross headings in tables

2013-02-22 Thread Carsten Dominik
On 22.2.2013, at 21:33, Achim Gratz strom...@nexgo.de wrote: Carsten Dominik writes: I think the cleanest way to implement this would be to _not_ modify Org syntax, because it is export back-end very specific. Something like: #+attr_html: :header-groups (1 3) | This | will | |

Re: [O] [Feature Request] Cross headings in tables

2013-02-17 Thread Nicolas Goaziou
Hello, Achim Gratz strom...@nexgo.de writes: I've just looked at how to implement this using org-element and the new exporter. Much to my dismay I found that table headers are not a separate row or row group type and the new exporter is still using this everything before the first separator

Re: [O] [Feature Request] Cross headings in tables

2013-02-17 Thread Achim Gratz
Nicolas Goaziou writes: You only need to modify org-element if Org syntax has been changed. Yes, thats exactly what I want. Also, it appears that each element can have only one property or did I miss something? It seems that having a way to get the (main) property and then asking if there

Re: [O] [Feature Request] Cross headings in tables

2013-02-17 Thread Achim Gratz
Achim Gratz writes: Nicolas Goaziou writes: You only need to modify org-element if Org syntax has been changed. Yes, thats exactly what I want. A new rule type was easy enough to implement: http://repo.or.cz/w/org-mode/org-tableheadings.git/commit/17a4e9c599c555f53c2831fe8c473f169ccd8679 It

Re: [O] [Feature Request] Cross headings in tables

2013-02-16 Thread Achim Gratz
I've just looked at how to implement this using org-element and the new exporter. Much to my dismay I found that table headers are not a separate row or row group type and the new exporter is still using this everything before the first separator is a heading kludge. It's easy enough to