emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [Orgmode] latex enumeration issue


From: Dan Davison
Subject: Re: [Orgmode] latex enumeration issue
Date: Wed, 03 Feb 2010 23:28:49 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux)

Mark Elston <address@hidden> writes:

> OK.  I guess I was wrong.  For some reason this hook doesn't seem
> to work.  I masked the issue a different way and it made me *think*
> this was working.
>
> Any ideas why this hook function would not remove header lines with
> only tags and no header text?
>
> Mark

Hi Mark,

I haven't tried to understand the use case, but here's a modified
version.

Dan

(defun mee-delete-empty-org-headers ()
  (while (re-search-forward "^\\*+[\t ]+:[a-zA-Z0-9]+:$" nil t)
    (beginning-of-line)
    (kill-line)
    (forward-line)))

>
> On 2/3/2010 6:24 PM, Mark Elston wrote:
>> ...
>>
>> ;;; Export Hooks
>> (defun mee-delete-empty-org-headers ()
>>   (while (re-search-forward "^[*]+ [ ]+:[a-zA-Z0-9]+:$" nil t)
>>     (progn
>>       (beginning-of-line)
>>       (kill-line 0))))
>>
>> (add-hook 'org-export-preprocess-hook
>>           'mee-delete-empty-org-headers)
>>
>>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> address@hidden
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode




reply via email to

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