如何让 htmlize.el 在 Emacs org-mode 中用于项目发布?
我想在 Emacs org-mode 中发布一个项目,其中包含多个 .html 文件。 其中有一些我想强调的 python 代码示例。 但 htmlize.el 不会为我做到这一点。 奇怪的是,当导出单个 .html 文件(使用Cc Ce h)时,代码示例会突出显示。 那么我怎样才能让 htmlize.el 用于项目发布呢?
I want to publish a project in Emacs org-mode, which contains several .html files.
There are some python code examples in them that I wanna highlight.
But htmlize.el won't do that for me.
Strangely, when exporting single .html file (using C-c C-e h), the code examples are highlighted .
So how could I get htmlize.el work for project publishing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您的 org-publish-project-alist 中,将 htmlized-source 属性设置为非零:
请参阅 组织模式手册的发布操作部分。
In your
org-publish-project-alist
, set thehtmlized-source
property to non-nil:See the Publishing action section of the Org-mode manual.
您必须将代码放入 #+BEGIN_SRC 和 #+END_SRC 中。例如
You have to put your code inside #+BEGIN_SRC and #+END_SRC . For example
使用 htmlize.el 突出显示 orgfile 中的代码,只需将此处列出的代码添加到您的 .emacs 文件中:
注意:请确保 htmlize.el 在您的加载路径中
using htmlize.el to highlight your code in orgfile, just add codes listed here to your .emacs file:
Notes: please make sure htmlize.el in your load-path