From 0de831fb611c89c1a2be4825a8e28999fcf8e526 Mon Sep 17 00:00:00 2001 From: dongdigua Date: Wed, 28 Jun 2023 23:16:27 +0800 Subject: [PATCH] org-faq.org: rename org-export-htmlize-* to org-html-htmlize-* look at this commit: https://git.sr.ht/~bzg/org-mode/commit/8134e80bdfb55bbce9aecf3f5958a2bd43cc0b63 the document didn't catch up with source code I encountered this problem in: https://emacs-china.org/t/org-emacs-script-org-publish-all/20782 and documented it in: https://dongdigua.github.io/org_export_highlight --- org-faq.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/org-faq.org b/org-faq.org index ab66139..3efebd1 100644 --- a/org-faq.org +++ b/org-faq.org @@ -3793,7 +3793,7 @@ There is a whole host of export options you can set with an in-buffer options or via global variables. See [[https://orgmode.org/manual/Export-settings.html#Export-settings][this section]] of the manual for a full list. -** How can I preserve faces when I export an agenda from the command line? +** How can I preserve faces when I export an org file from the command line? :PROPERTIES: :CUSTOM_ID: preserving-faces-during-batch-export :END: @@ -3821,18 +3821,18 @@ does not have a display and therefore only rudimentary face definitions. If you'd like to use more complex styles, you'll have to make sure that the export process only assigns classes instead of direct color values. This can be done by binding the variable -=org-export-htmlize-output-style= to =css= for the duration of the +=org-html-htmlize-output-style= to =css= for the duration of the export, for example with : emacs -batch -l ~/.emacs -: -eval '(let ((org-export-htmlize-generate-css (quote css))) +: -eval '(let ((org-html-htmlize-generate-css (quote css))) : (org-batch-agenda "e"))' Then you can use a style file to make these classes look any way you like. To generate face definitions for a CSS file based on any faces you are currently using in Emacs, you can use the following command: -: M-x org-export-htmlize-generate-css RET +: M-x org-html-htmlize-generate-css RET This will generate a == section, the content of which you can add to your style file. -- https://dongdigua.github.io