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
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
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
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 `
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
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