emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [Accepted] individual markups for active and inactive time stamps on


From: Bastien Guerry
Subject: [O] [Accepted] individual markups for active and inactive time stamps on export
Date: Fri, 1 Jul 2011 11:04:20 +0200 (CEST)

Patch 816 (http://patchwork.newartisans.com/patch/816/) is now "Accepted".

Maintainer comment: none

This relates to the following submission:

http://mid.gmane.org/%3C874o373spj.fsf%40ucl.ac.uk%3E

Here is the original message containing the patch:

> Content-Type: text/plain; charset="utf-8"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> Subject: [O] individual markups for active and inactive time stamps on export
> Date: Fri, 01 Jul 2011 02:38:48 -0000
> From: Eric S Fraga <address@hidden>
> X-Patchwork-Id: 816
> Message-Id: <address@hidden>
> To: address@hidden
> 
> Hello again,
> 
> okay, I will answer my own post with a possible solution to my feature
> request earlier today.  
> 
> Attached is a patch that does the job; whether it is elegant enough or
> not is another question.  I've not addressed the documentation at all
> yet.  I will wait to see what the response to this simple patch might
> be...
> 
> Thanks,
> eric
> 
> 
> * Allow for a different markup for inactive time stamps on latex export
> 
> 
> diff --git a/lisp/org-latex.el b/lisp/org-latex.el
> index 1baa5f9..694f65b 100644
> --- a/lisp/org-latex.el
> +++ b/lisp/org-latex.el
> @@ -292,6 +292,11 @@ markup defined, the first one in the association list 
> will be used."
>    :group 'org-export-latex
>    :type 'string)
>  
> +(defcustom org-export-latex-timestamp-inactive-markup "\\textit{%s}"
> +  "A printf format string to be applied to inactive time stamps."
> +  :group 'org-export-latex
> +  :type 'string)
> +
>  (defcustom org-export-latex-timestamp-keyword-markup "\\texttt{%s}"
>    "A printf format string to be applied to time stamps."
>    :group 'org-export-latex
> @@ -1613,7 +1618,9 @@ links, keywords, lists, tables, fixed-width"
>        (org-if-unprotected-at (1- (point))
>         (replace-match
>       (org-export-latex-protect-string
> -      (format org-export-latex-timestamp-markup
> +      (format (if (string= "<" (substring (match-string 0) 0 1))
> +                  org-export-latex-timestamp-markup
> +                org-export-latex-timestamp-inactive-markup)
>                (substring (org-translate-time (match-string 0)) 1 -1)))
>       t t)))))
>  
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]