[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] lisp/org.el: Use `org-document-info' face for subtitles
From: |
Kyle Meyer |
Subject: |
Re: [PATCH] lisp/org.el: Use `org-document-info' face for subtitles |
Date: |
Fri, 06 Nov 2020 01:18:01 -0500 |
Titus von der Malsburg writes:
> Subject: [PATCH] lisp/org.el: Use face org-document-info for subtitle
>
> * lisp/org.el: The value for the #+subtitle: property is now displayed
> with face `org-document-info' instead of `org-meta-line'.
>
> Like the title, author, e-mail, date, the subtitle is information
> that is displayed in the exported document.
Makes sense to me, and I guess it was left out just because #+subtitle
wasn't around until v8.3.
> ---
> lisp/org.el | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lisp/org.el b/lisp/org.el
> index 03df139fb..27f09645b 100644
> --- a/lisp/org.el
> +++ b/lisp/org.el
> @@ -5307,7 +5307,7 @@ by a #."
> (min (point-max) end-of-endline))
> '(face org-block-end-line)))
> t))
> - ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
> + ((member dc1 '("+title:" "+subtitle:" "+author:" "+email:" "+date:"))
> (org-remove-flyspell-overlays-in
> (match-beginning 0)
> (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
Please also update org-document-info-keyword's docstring.
- [PATCH] lisp/org.el: Use `org-document-info' face for subtitles, Titus von der Malsburg, 2020/11/03
- Re: [PATCH] lisp/org.el: Use `org-document-info' face for subtitles,
Kyle Meyer <=
- Re: [PATCH] lisp/org.el: Use `org-document-info' face for subtitles, Titus von der Malsburg, 2020/11/06
- Re: [PATCH] lisp/org.el: Use `org-document-info' face for subtitles, Kyle Meyer, 2020/11/07
- Re: [PATCH] lisp/org.el: Use `org-document-info' face for subtitles, Titus von der Malsburg, 2020/11/12
- [PATCH] lisp/org.el: Allow hiding #+SUBTITLE: keyword via `org-hidden-keywords', Kyle Meyer, 2020/11/16
- Re: [PATCH] lisp/org.el: Allow hiding #+SUBTITLE: keyword via `org-hidden-keywords', Titus von der Malsburg, 2020/11/16
- Re: [PATCH] lisp/org.el: Allow hiding #+SUBTITLE: keyword via `org-hidden-keywords', Kyle Meyer, 2020/11/16