[O] css classes to tables in html export

2014-02-16 Thread Vikas Rawal
How do I add custom css classes to tables while publishing my project? Vikas

Re: [O] simple way to call `C-c a v' or a way to bind it to a key?

2014-02-16 Thread Marc Ihm
Hi Yaushi, how about (global-set-key (kbd "") (lambda () (interactive) (execute-kbd-macro (kbd "C-c a v" ? best regards Marc P.s.: In my opinion, the name "execute-kbd-macro" of this builtin function is somewhat misleading; "replay-keys" describes this usage closer ... Am 15.02.2014 14

Re: [O] [patch] Support CUSTOM_ID property in latex export

2014-02-16 Thread Richard Lawrence
Hi Nicolas, Nicolas Goaziou writes: > Richard Lawrence writes: > >> 1) Sometimes I need to refer to a section from within an embedded LaTeX >> block. In that case, I need to know the appropriate label to use at the >> LaTeX level, not just in Org. For example: >> >> * A headline >> :PROPERT

Re: [O] Get a list of tasks completed today

2014-02-16 Thread Sebastien Vauban
"Sebastien Vauban" wrote: > To get a list of tasks which I've completed today, I guess we must have: > > (setq org-log-done t) ; default > > I mean: I guess it's more dangerous to try and play with the "state > changes" information stored in the LOGBOOK drawer as people can easily > modify them (

Re: [O] Use date in Easy Templates?

2014-02-16 Thread Rainer M Krug
On 02/16/14, 19:08 , Nick Dokos wrote: > Rainer M Krug writes: > >> is it possible to insert the actual date into Easy Templates? >> That's what I thought as well. > > No - but it's not difficult to crib the %file code and add %date: > > --8<---cut here---start--

Re: [O] Header in column view?

2014-02-16 Thread Rainer M Krug
On 02/16/14, 19:39 , Nick Dokos wrote: > Rainer M Krug writes: > >> is it possible to get the header into the column view of org, as it is >> replaced by the columns (which is nice, but in my case I would like to >> be able to have it in the column view)? >> > > I don't know much about column

Re: [O] Header in column view?

2014-02-16 Thread Nick Dokos
Rainer M Krug writes: > is it possible to get the header into the column view of org, as it is > replaced by the columns (which is nice, but in my case I would like to > be able to have it in the column view)? > I don't know much about column view, which might explain why I don't understand your

Re: [O] Use date in Easy Templates?

2014-02-16 Thread Nick Dokos
Rainer M Krug writes: > is it possible to insert the actual date into Easy Templates? > No - but it's not difficult to crib the %file code and add %date: --8<---cut here---start->8--- (defun org-complete-expand-structure-template (start cell) "Expand a stru

[O] Header in column view?

2014-02-16 Thread Rainer M Krug
Hi is it possible to get the header into the column view of org, as it is replaced by the columns (which is nice, but in my case I would like to be able to have it in the column view)? Cheers, Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys

[O] Use date in Easy Templates?

2014-02-16 Thread Rainer M Krug
Hi is it possible to insert the actual date into Easy Templates? Thanks, Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch University South Africa Tel : +33 - (0)9 53

Re: [O] parser: verbatim or code?

2014-02-16 Thread Michael Brand
Hi Nicolas On Sun, Feb 16, 2014 at 11:00 AM, Nicolas Goaziou wrote: > Indeed, that's the very issue we're discussing in this thread. > > I'm not sure to understand what you mean here. For me it was not explicit enough that this ((equal marker "~") 'code) ((equal marker "=") 'verbatim)

Re: [O] Org not preserving Python indent levels on LaTex export due to tabs

2014-02-16 Thread Nicolas Goaziou
Hello, Samuel Wales writes: > i can't seem to find the -i flag in the manual. perhaps i used the > wrong search term? i looked in literal examples and in working with > source code. i am using maint. Indeed. It doesn't appear in the manual. I don't use it. Maybe Someone using it can provide

Re: [O] parser: verbatim or code?

2014-02-16 Thread Nicolas Goaziou
Hello, Michael Brand writes: > When I read org-element-text-markup-successor > > ((equal marker "~") 'code) > ((equal marker "=") 'verbatim) > > it confuses me because of the well known Org manual > > You can make words *bold*, /italic/, _underlined_, =code= and > ~verbatim~ Ind

Re: [O] parser: verbatim or code?

2014-02-16 Thread Michael Brand
Hi Nicolas On Sun, Feb 16, 2014 at 10:20 AM, Nicolas Goaziou wrote: > If we leave it as-is, documentation needs to be updated anyway. > > If we do change them, it should only happen in "org-element.el". I don't > think that would break existing documents, as code and verbatim are > really close t

Re: [O] Best way to generate textile from orgmode ?

2014-02-16 Thread Yasushi SHOJI
Hi Marc, # way too late to reply but... At Thu, 11 Apr 2013 22:11:49 +0200, Marc-Oliver Ihm wrote: > > i would like to convert orgmode to textile (which is used within confluence > wiki). I was hoping that someone's gonna beat me to it. but hey, it's much fun to write elisp than textile (it's

Re: [O] parser: verbatim or code?

2014-02-16 Thread Nicolas Goaziou
Hello, Yasushi SHOJI writes: > Nick Dokos wrote: >> >> I think it's a code bug: ~verbatim~ is the precedent-setting latex >> convention. >> >> However fixing it might break existing documents (although in many >> instances code and verbatim are treated equivalently, so that might >> not be muc

Re: [O] [patch] Support CUSTOM_ID property in latex export

2014-02-16 Thread Nicolas Goaziou
Hello, Richard Lawrence writes: > 1) Sometimes I need to refer to a section from within an embedded LaTeX > block. In that case, I need to know the appropriate label to use at the > LaTeX level, not just in Org. For example: > > * A headline > :PROPERTIES: > :CUSTOM_ID: sec:a-headline >

Re: [O] Sub-totals

2014-02-16 Thread Michael Brand
Hi Cecil On Sat, Feb 15, 2014 at 6:14 PM, Cecil Westerhof wrote: > - I would like to have only the last element of the range filled. I always thought that this would not be possible with reasonable effort. Your question made me think again and it is possible, now I can change my own use cases wi

Re: [O] parser: verbatim or code?

2014-02-16 Thread Yasushi SHOJI
Hi, At Sat, 15 Feb 2014 09:23:41 -0500, Nick Dokos wrote: > > I think it's a code bug: ~verbatim~ is the precedent-setting latex > convention. > > However fixing it might break existing documents (although in many > instances code and verbatim are treated equivalently, so that might > not be muc

Re: [O] simple way to call `C-c a v' or a way to bind it to a key?

2014-02-16 Thread Yasushi SHOJI
Hi Thorsten, At Sat, 15 Feb 2014 18:34:07 +0100, Thorsten Jolitz wrote: > > so instead of binding the dispatcher function to a global key you can > bind one or more of the specific functions, e.g. > > , > | (global-set-key (kbd "") 'org-agenda-list