Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想emacs-lisp在 Emacs Org-mode 中将 list to :var 放入代码块中,并在新行上仅输出每个列表项。它ruby看起来很简单
emacs-lisp
ruby
#+BEGIN_SRC ruby [1,2,3,4]*"\n" #+END_SRC
但无法在 Emacs lisp 代码块中实现。
像这样的东西?
#+BEGIN_SRC emacs-lisp (mapconcat #'number-to-string '(1 2 3 4) "\n") #+END_SRC #+RESULTS: : 1 : 2 : 3 : 4