dan*_*ast 87 emacs markdown org-mode
Markdown允许embedded code.怎么办org-mode呢?
我知道源代码块:
#+begin_example
blah-blah
#+end_example
Run Code Online (Sandbox Code Playgroud)
但我想要的是这样的东西(显然,使用正确的语法,我不知道):
This is `embeded code`.
Run Code Online (Sandbox Code Playgroud)
可以这样做org-mode吗?不可能在文档中找到...
Tom*_*ner 107
虽然monospaced对于大多数情况来说足够好,但内联代码块具有这种形式src_LANG[headers]{your code}.例如,src_xml[:exports code]{<tag>text</tag>}.
ffe*_*tte 96
您可以将文本括在其中=或~使用等宽字体进行排版,然后逐字导出(这意味着它不会针对org特定的语法处理):
This is =verbatim text= or ~code~.
Run Code Online (Sandbox Code Playgroud)
您可以在本手册的相关部分找到有关组织模式标记元素的所有信息.