On Tue, 8 Dec 2015, Uwe Brauer wrote:

Hello

I have some tables in comment blocks like

#+begin_comment
| Col1 | Col2  |
|    1 | Name1 |
|    2 | Name2 |
|    3 | Name3 |

#+end_comment

But within a comment org-ctrl-c-ctrl-c does not work. So I cannot
reformat the table. How can I enable it?


Use an org src block and you will be able to edit natively via org-ctrl-c-ctrl-c. AFAICS, this behaves like `comment' in other respects.

#+begin_src org :exports none :eval never
  | Col1 | Col2  |
  |    1 | Name1 |
  |    2 | Name2 |
  |    3 | Name3 |
#+end_src

HTH,

Chuck

Reply via email to