0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-15 17:46:27 +00:00

refined understanding of the quoting issue

This commit is contained in:
Eric Schulte 2009-05-14 06:59:17 -07:00
parent b6f2fc7e0d
commit 13ef8051ed

View file

@ -315,10 +315,9 @@ example in the [[* emacs lisp source reference][emacs lisp source reference]].
* Bugs [4/5]
** TODO extra quotes for nested string
when string are nested 2 deep in org-mode tables their quotes aren't
being stripped
It looks like the problem is actually R not reading tables well
these should not be quoted
these *should* be quoted
#+srcname: ls
#+begin_src sh :results replace
ls
@ -342,9 +341,34 @@ ls
#+srcname: ruby-quote-test
#+begin_src ruby
[3, 4, 5]
[["3"], ["eric"], ["5"]]
#+end_src
| "3" |
| "eric" |
| "5" |
#+srcname: read-quoted-table
#+begin_src ruby :var tab=ruby-quote-test
tab[1][0]
#+end_src
#+srcname: ruby-no-quotes
#+begin_src ruby
["3", "eric", "9"]
#+end_src
| "3" | "eric" | "9" |
#+srcname: elisp-no-quotes
#+begin_src emacs-lisp
(list "3" "eric" "9")
#+end_src
| "3" | "eric" | "9" |
** RESOLVED simple ruby arrays not working
As an example eval the following. Adding a line to test