Emacs 如何让组织模式在HTML导出中使用智能引号?

Emacs 如何让组织模式在HTML导出中使用智能引号?,emacs,org-mode,smartypants,Emacs,Org Mode,Smartypants,让组织模式在HTML导出时使用智能引号的最佳方法是什么 有没有办法使用 我将此添加到了.emacs中,但它不起作用 (setq org-export-html-special-string-regexps (cons '(" \"\\([^\"]+\\)\"" . " “\\1”") org-export-html-special-string-regexps)) 将此添加到您的Emacs配置

让组织模式在HTML导出时使用智能引号的最佳方法是什么

有没有办法使用

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

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

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

(setq org-export-with-smart-quotes t)

你问了两次同样的问题?