From: Mingkai Dong <mk@dong.mk> To: emacs-orgmode@gnu.org Cc: Mingkai Dong <mk@dong.mk> Subject: [PATCH] lisp/ox-html.el: Move the space after exported section number Date: Mon, 3 May 2021 23:07:45 +0800 [thread overview] Message-ID: <20210503150745.72871-1-mk@dong.mk> (raw) * ox-html.el (org-html-headline, org-html-format-headline-default-function): delete the space after the section number span format and add it back in org-html-format-headline-default-function. The requirement is well described in the reddit post https://www.reddit.com/r/emacs/comments/bv8rli/org_mode_export_section_numbering/ which can be solved by setting the org-html-format-headline-function variable to a custom function that adds the "." before the section title. However, this results in something like "1 . Fist-Section-Title", rather than "1. First-Section-Title", because of the extra space after the <span> format. Moving the space to org-html-format-headline-default-function preserves existing export behavior while allowing the users to better control the format. --- lisp/ox-html.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 89da823e8..f2ce71f68 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -2676,7 +2676,7 @@ holding contextual information." (concat (and numberedp (format - "<span class=\"section-number-%d\">%s</span> " + "<span class=\"section-number-%d\">%s</span>" level (mapconcat #'number-to-string numbers "."))) formatted-text) @@ -2696,7 +2696,8 @@ See `org-html-format-headline-function' for details." (let ((todo (org-html--todo todo info)) (priority (org-html--priority priority info)) (tags (org-html--tags tags info))) - (concat todo (and todo " ") + (concat " " + todo (and todo " ") priority (and priority " ") text (and tags "   ") tags))) -- 2.31.1
next reply other threads:[~2021-05-03 15:18 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-05-03 15:07 Mingkai Dong [this message] 2021-05-03 15:31 ` Bastien 2021-05-03 16:35 ` Mingkai Dong 2021-05-03 17:19 ` Bastien
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: https://www.orgmode.org/ * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210503150745.72871-1-mk@dong.mk \ --to=mk@dong.mk \ --cc=emacs-orgmode@gnu.org \ --subject='Re: [PATCH] lisp/ox-html.el: Move the space after exported section number' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).