Re: [Orgmode] Alternate Table Row Colors

2009-06-18 Thread Xin Shi
Hi Carsten, That's great! Thanks a lot! Just one tiny typo in the docstring: "these ca be Lisp forms" ~~~ -> can Xin On Thu, Jun 18, 2009 at 1:09 AM, Carsten Dominik wrote: > Hi Xin, > > I have pushed a change to this effect. It introduces a new variable > org-export-table-row-ta

Re: [Orgmode] Alternate Table Row Colors

2009-06-17 Thread Carsten Dominik
Hi Xin, I have pushed a change to this effect. It introduces a new variable org-export-table-row-tags which can be used for this purpose. Please the the docstring of that variable. HTH - Carsten On Jun 14, 2009, at 9:00 PM, Xin Shi wrote: Hello Experts, I use org-mode to produce a lot of

Re: [Orgmode] Alternate Table Row Colors

2009-06-15 Thread Xin Shi
Hello Experts, I took a look in the lisp directory, the related function is in the org-html.el: (defun org-format-org-table-html (lines &optional splice) There it might need a counter for the row in the line (push (concat "" ... I don't know how to continue from here ... Any suggestions fr

Re: [Orgmode] Alternate Table Row Colors

2009-06-15 Thread Xin Shi
Hi Russell, Thanks for your posting! Unfortunately, this is quite a new feature for CSS 3, which is not supported by the Firefox 3. It would be great if the org-mode can just add the class attribute in the . Xin On Sun, Jun 14, 2009 at 3:11 PM, Russell Adams wrote: > Not that I'm a CSS exper

Re: [Orgmode] Alternate Table Row Colors

2009-06-14 Thread Russell Adams
Not that I'm a CSS expert, but it appears you could do this without changing how Org outputs tables by adding this styling to your CSS. http://www.zorked.com/css/alternating-table-rows-using-css-only/ Quote: tr:nth-child(odd) { background-color: #CC; } tr:nth-child(even) { background-color:

[Orgmode] Alternate Table Row Colors

2009-06-14 Thread Xin Shi
Hello Experts, I use org-mode to produce a lot of big tables with numbers in them. When I present these tables by HTML, I found it's hard to keep track which row it is. I'm wondering if it's possible to implement additional class attribute to the , such as: OneFish TwoFish RedFish BlueFish So