Let's say I would like to have some text in the verbatim environment in org-mode where the table shortcuts are disabled.
For example, consider the following text:
|-- 05102013 | |-- 1826 | |-- 6500 | |-- 6501 | |-- 6502 | |-- 6503 | `-- readme
If I put it in the EXAMPLE literal folder:
#+BEGIN_EXAMPLE |-- 05102013 | |-- 1826 | |-- 6500 | |-- 6501 | |-- 6502 | |-- 6503 | `-- readme
and I accidentally press <TAB> on any line in the text above. org-mode will automatically reorganize the text to look like a table:
|------------+---------| | | -- 1826 | | | -- 6500 | | | -- 6501 | | | -- 6502 | | | -- 6503 | | `-- readme | |
which I do not want. Does org-mode provide any environments or blocks in which the automatic table creation engine is disabled?
source share