Re: [O] Activate/deactivate export of inlinetasks with #+OPTIONS

2012-08-16 Thread Bastien
Nicolas Goaziou writes: > Bastien writes: > >>> (defcustom org-export-with-inlinetasks t >>> "Non-nil means include INLINETASKS keywords in export. >>> When nil, remove all these keywords from the export." >>> :group 'org-export-general >>> :type 'boolean) >> >> +1 for having this for the

Re: [O] Activate/deactivate export of inlinetasks with #+OPTIONS

2012-08-16 Thread Nicolas Goaziou
Hello, Bastien writes: >> (defcustom org-export-with-inlinetasks t >> "Non-nil means include INLINETASKS keywords in export. >> When nil, remove all these keywords from the export." >> :group 'org-export-general >> :type 'boolean) > > +1 for having this for the new exporter. > > Thanks for

Re: [O] Activate/deactivate export of inlinetasks with #+OPTIONS

2012-08-14 Thread Bastien
Hi Rasmus, Rasmus writes: > (defcustom org-export-with-inlinetasks t > "Non-nil means include INLINETASKS keywords in export. > When nil, remove all these keywords from the export." > :group 'org-export-general > :type 'boolean) +1 for having this for the new exporter. Thanks for the ide

Re: [O] Activate/deactivate export of inlinetasks with #+OPTIONS

2012-08-14 Thread Suvayu Ali
On Tue, Aug 14, 2012 at 01:19:47PM +0100, Rasmus wrote: > > Hi list, > > When writing documents, I think in terms of LaTeX. There, a common > option in `draft'. In orgmode inlinetasks is a draft-thingy to me. I > want to easily remove inlinetasks before exporting a final (that merely > means `

Re: [O] Activate/deactivate export of inlinetasks with #+OPTIONS

2012-08-14 Thread Rasmus
Rasmus writes: > To reach an Org-ish solution I wrote the following trivial > advice+extra, > which allows #+OPTIONS: inline:t or #+OPTIONS: inline:nil. It works > only with the new exporter (which is amazing!!!). This solution is better as it's backend-agnostic: #+BEGIN_SRC emacs-lisp (add

[O] Activate/deactivate export of inlinetasks with #+OPTIONS

2012-08-14 Thread Rasmus
Hi list, When writing documents, I think in terms of LaTeX. There, a common option in `draft'. In orgmode inlinetasks is a draft-thingy to me. I want to easily remove inlinetasks before exporting a final (that merely means `pretty') version. To reach an Org-ish solution I wrote the following