0

让 org-mode 在 HTML 导出中使用智能引号的最佳方法是什么?

有没有办法使用Smartypants

我将此添加到我的 .emacs 中,但它不起作用。

     (setq org-export-html-special-string-regexps
        (cons
         '(" \"\\([^\"]+\\)\"" . " “\\1”")
         org-export-html-special-string-regexps))
4

1 回答 1

0

将此添加到您的 Emacs 配置文件中:

(setq org-export-with-smart-quotes t)
于 2013-05-27T18:17:25.583 回答