如何让 htmlize.el 在 Emacs org-mode 中用于项目发布?

发布于 2024-10-05 23:10:41 字数 187 浏览 7 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

丑丑阿 2024-10-12 23:10:41

在您的 org-publish-project-alist 中,将 htmlized-source 属性设置为非零:

(setq org-publish-project-alist
      '(("my-project"
           :base-directory ...
           :htmlized-source t
             ...
       )))

请参阅 组织模式手册的发布操作部分。

In your org-publish-project-alist, set the htmlized-source property to non-nil:

(setq org-publish-project-alist
      '(("my-project"
           :base-directory ...
           :htmlized-source t
             ...
       )))

See the Publishing action section of the Org-mode manual.

肩上的翅膀 2024-10-12 23:10:41

您必须将代码放入 #+BEGIN_SRC 和 #+END_SRC 中。例如

* My python code
#+BEGIN_SRC python
def foo():
  if bar == 1:
     bar = 2
  else: 
     bar = 3
#+END_SRC

You have to put your code inside #+BEGIN_SRC and #+END_SRC . For example

* My python code
#+BEGIN_SRC python
def foo():
  if bar == 1:
     bar = 2
  else: 
     bar = 3
#+END_SRC
御弟哥哥 2024-10-12 23:10:41

使用 htmlize.el 突出显示 orgfile 中的代码,只需将此处列出的代码添加到您的 .emacs 文件中:

(require 'htmlize)

注意:请确保 htmlize.el 在您的加载路径中

using htmlize.el to highlight your code in orgfile, just add codes listed here to your .emacs file:

(require 'htmlize)

Notes: please make sure htmlize.el in your load-path

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文