org-mode导出文件到其他文件夹而不是'pwd'

时间:2013-09-27 01:54:13

标签: emacs org-mode

当我使用C-c C-e h o时,我的.org文件将转换为.html文件并在Web浏览器中打开。 但是这个.html文件位于pwd文件夹中,作为.org文件。 是否可以以这种方式导出.html文件位于其他文件夹中,例如〜/ exports /

使用此方法,我可以将生成的文件分离到其他文件夹中。

感谢。

2 个答案:

答案 0 :(得分:1)

扩大奥斯曼的答案:

您可以创建类似于以下内容的内容:

请务必更改:base-directory以匹配您希望文件来源的位置。

("org-notes"
 :base-directory "~/org/"    ;; Change this to where your files are stored.
 :base-extension "org"
 :publishing-directory "~/exports/"
 :recursive t
 :publishing-function org-publish-org-to-html
 :headline-levels 4             ; Just the default for this project.
 :auto-preamble t
 )

从发布教程的Notes section调整模板。

答案 1 :(得分:0)

是的,您可以在此处找到有关如何设置将org文件发布到html的所有内容的详细信息:

http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html

您还可以查看变量的信息页面:

org-publish-project-alist

通过调用C-h v并在emacs底部的迷你缓冲区中提示时输入其名称。