Re: [Orgmode] Enhancing text with HTML export

2007-04-20 Thread Carsten Dominik
The reason for this is that "/" is used to indicate italic text, and that so far I have been excluding other emphasis markers as first and last characters in an emphasised snippet. I don't exactly remember why. This restriction will be removed in the next version, but I am not entirely sure if it

Re: [Orgmode] no blank lines in org file opened in Emacs on Windows

2007-04-20 Thread Carsten Dominik
You probably have Emacs 21 under Linux and Emacs 22 under Windows. This is a difference in the implementation of `outline-hide-sublevels' between these versions, and Org-mode simply calls this function. I believe you could take the Emacs 21 definition of this function and overwrite the Emacs 2

Re: [Orgmode] Org-mode completely freezes emacs

2007-04-20 Thread Simon Winwood
At Wed, 18 Apr 2007 15:18:13 -0500, cranreuch <[EMAIL PROTECTED]> wrote: > > [1 ] > [1.1 ] > This'll be 99% useless but: > > I saw the same (well, similar) thing a week or so ago when I just started > using org mode. But I then fixed it and can't reproduce it at all. Sigh. > > It had *somethin

Re: [Orgmode] Re: '|' in a table

2007-04-20 Thread Christoph Bauer
Carsten Dominik <[EMAIL PROTECTED]> writes: > \vert will work in version 4.72, will be translated to | Great! Thank you, Christoph ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] Bug? Archived tasks appear in icalendar export

2007-04-20 Thread Carsten Dominik
Fixed, thanks. - Carsten On Apr 18, 2007, at 16:47, Denis Bueno wrote: I'm using GNU Emacs 22.0.92.2 (powerpc-apple-darwin8.8.0, Carbon Version 1.6.0) of 2007-01-18, and org-mode 4.71. I have tasks in an org-mode file that look like * TODO OD ch 3 :2340:ARCHI

Re: [Orgmode] Enhancing text with HTML export

2007-04-20 Thread Daniel Dehennin
Le 4979 Septembre 1993, Carsten Dominik a tapoté: > The reason for this is that "/" is used to indicate italic text, [...] > This restriction will be removed in the next version, but I > am not entirely sure if it will break some other part of > emphasis highlighting. We will see... Thanks. --

Re: [Orgmode] no blank lines in org file opened in Emacs on Windows

2007-04-20 Thread Scott Jaderholm
On 4/20/07, Carsten Dominik <[EMAIL PROTECTED]> wrote: You probably have Emacs 21 under Linux and Emacs 22 under Windows. This is a difference in the implementation of `outline-hide-sublevels' between these versions, and Org-mode simply calls this function. Thanks Carsten, you're right on. I

Re: [Orgmode] no blank lines in org file opened in Emacs on Windows

2007-04-20 Thread Carsten Dominik
On Apr 20, 2007, at 16:59, Scott Jaderholm wrote:   (run-hooks 'outline-view-change-hook)) (add-hook 'outline-mode-hook 'hide-sublevels) This is a misunderstanding, sorry for not being clearer: I meant: (add-hook 'outline-mode-hook (lambda () (defun hide-sublevels .. where the def

Re: [Orgmode] no blank lines in org file opened in Emacs on Windows

2007-04-20 Thread Scott Jaderholm
On 4/20/07, Carsten Dominik <[EMAIL PROTECTED]> wrote: Remember that this is only a hack - maybe a better solution would be to use org-cycle-hook and to show those empty lines with a function in there. Carsten, This hack didn't work for me. How hard would it be to do the second option and ad