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-23 Thread Bastien
Achim Gratz 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 is even mor

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

2013-02-22 Thread Carsten Dominik
On 22.2.2013, at 21:33, Achim Gratz 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-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 | >> |---+-

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

2013-02-22 Thread Carsten Dominik
On 17 feb. 2013, at 09:35, Nicolas Goaziou wrote: > Hello, > > Achim Gratz 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 u

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

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 t

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

2013-02-17 Thread Nicolas Goaziou
Hello, Achim Gratz 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 is a heading"

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 introd