如何在 emacs org-mode 中更改“:results output code”结果的语言
How to change the language of a result of ":results output code" in emacs org-mode
我有一个 org 文件,其中包含这样一个块:
#+BEGIN_SRC sh :exports results :results output code
sed -n '9,36 p' ./code/convert.c
#+END_SRC
C-c C-c
在 BEGIN_SRC
上会给我以下结果:
#+RESULTS:
#+begin_src sh
// here is some C code
#+end_src
如何更改“:results 输出代码”结果的语言,以便我能得到这样的输出:
#+RESULTS:
#+begin_src C
// here is some C code
#+end_src
#+BEGIN_SRC sh :exports results :results output code :wrap SRC C
sed -n '9,36 p' ./code/convert.c
#+END_SRC
将#+BEGIN_SRC
和#+END_SRC
的SRC
替换为:wrap XXX
将#+BEGIN_XXX
和#+END_XXX
我有一个 org 文件,其中包含这样一个块:
#+BEGIN_SRC sh :exports results :results output code
sed -n '9,36 p' ./code/convert.c
#+END_SRC
C-c C-c
在 BEGIN_SRC
上会给我以下结果:
#+RESULTS:
#+begin_src sh
// here is some C code
#+end_src
如何更改“:results 输出代码”结果的语言,以便我能得到这样的输出:
#+RESULTS:
#+begin_src C
// here is some C code
#+end_src
#+BEGIN_SRC sh :exports results :results output code :wrap SRC C
sed -n '9,36 p' ./code/convert.c
#+END_SRC
将#+BEGIN_SRC
和#+END_SRC
的SRC
替换为:wrap XXX
将#+BEGIN_XXX
和#+END_XXX