emacs/org-mode 导出重音尖音
emacs/org-mode export accent acute
从 .org
导出到 .md
(使用 ox-gfm
或正常降价)org-mode 在每个重音符 (`) 之前添加不需要的反斜杠 (\)。所以
`path/file` 变为 \`path/file\`。
知道如何关闭它吗?
谢谢,F
Markdown 中的反引号(重音符)用于分隔代码示例。
org-mode 中的等效项是等号。例如,以下组织模式:
The file is at =/tmp/toto=
作为 Markdown 导出到:
The file is at `/tmp/toto`
如果你想在 Markdown 中使用反引号,you have to escape it,而这正是组织模式导出器正在做的。
从 .org
导出到 .md
(使用 ox-gfm
或正常降价)org-mode 在每个重音符 (`) 之前添加不需要的反斜杠 (\)。所以
`path/file` 变为 \`path/file\`。
知道如何关闭它吗?
谢谢,F
Markdown 中的反引号(重音符)用于分隔代码示例。
org-mode 中的等效项是等号。例如,以下组织模式:
The file is at =/tmp/toto=
作为 Markdown 导出到:
The file is at `/tmp/toto`
如果你想在 Markdown 中使用反引号,you have to escape it,而这正是组织模式导出器正在做的。