我想使用定义在~/.emacs
. 我写了以下代码:
(defun publish-custom-orgs ()
"publish certain org files as html files"
(interactive)
(find-file "~/org/a.org")
(org-export-as-html)
(find-file "~/org/b.org")
(org-export-as-html)
)
但这不会导出文件;相反,它在 minibuffer 中显示了一个奇怪的输出:
我究竟做错了什么?