问题描述
我有一些奇怪的行为,我实际上并不知道是否是一个错误或别的东西。当我做
C-c C-e
转换为降价的选项不会出现。尽管如此,我可以输入选项 Mx org-md-export-as-markdown
,之后,导出为markdown的选项出现在 Cc中
任何想法?
解决方案如果您使用Org-mode 8.0或更高版本(请使用 Mx org-version
检查),导出框架为,这些库不一定默认加载。
您的Emacs配置可以使用Org模式自动加载Markdown导出器:
(eval-after-loadorg
'(require'ox-md nil t))
I have some weird behavior, I don't actually know if it's a bug or something else.When I do C-c C-e
the option to convert to markdown doesn't appear. Nonetheless I can type the option M-x org-md-export-as-markdown
and after I do that, the option export to markdown appears in the C-c C-e
menu.
Any Ideas?
解决方案 If you are using Org-mode version 8.0 or later (check with M-x org-version
), the export framework is broken up into several libraries that are not necessarily loaded by default.
Something like this in your Emacs configuration can load the Markdown exporter automatically with Org-mode:
(eval-after-load "org"
'(require 'ox-md nil t))
这篇关于Emacs组织模式导出降价的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!