From: William Denton <wtd@pobox.com>
To: emacs-orgmode@gnu.org
Subject: Problem with src_ruby inline code and []
Date: Tue, 15 Mar 2016 14:13:17 -0400 (EDT) [thread overview]
Message-ID: <alpine.DEB.2.02.1603151406330.28796@shell.miskatonic.org> (raw)
[-- Attachment #1: Type: TEXT/PLAIN, Size: 855 bytes --]
I was updating and exporting a file where I use Ruby to do some basic
arithmetic on tables, and noticed that inline code blocks where I reference an
array aren't working.
If you C-c C-c on this simple src_ruby example you get the results.
src_ruby{1 + 2} {{{results(=3=)}}}
But this doesn't work:
#+NAME: sampletable
| name | one | two |
| Me | 5 | 3 |
| You | 4 | 6 |
src_ruby[:var t=sampletable]{t[2][2]}
It changes the line to
src_ruby[:var t=sampletable]{t[2] {{{results(==)}}}[2]}
and says:
-:5: syntax error, unexpected keyword_end, expecting ']'
-:7: syntax error, unexpected end-of-input, expecting keyword_end
However, this does work:
#+BEGIN_SRC ruby :var t=sampletable
t[2][2]
#+END_SRC
#+RESULTS:
: 6
Bill
--
William Denton ↔ Toronto, Canada ↔ https://www.miskatonic.org/
next reply other threads:[~2016-03-15 18:13 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-15 18:13 William Denton [this message]
2016-03-15 21:51 ` Problem with src_ruby inline code and [] Charles C. Berry
2016-03-16 17:18 ` Nicolas Goaziou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.DEB.2.02.1603151406330.28796@shell.miskatonic.org \
--to=wtd@pobox.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.