emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Activate/deactivate export of inlinetasks with #+OPTIONS
@ 2012-08-14 12:19 Rasmus
  2012-08-14 12:49 ` Rasmus
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Rasmus @ 2012-08-14 12:19 UTC (permalink / raw)
  To: emacs-orgmode


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 trivial advice+extra,
which allows #+OPTIONS: inline:t or #+OPTIONS: inline:nil.  It works
only with the new exporter (which is amazing!!!).

I'm hoping someone else could make use of it (although it is truly
trivial, but not being a programmer I appreciate finding `easy'
solutions on the internets).

#+BEGIN_SRC emacs-lisp
(add-to-list 'org-export-options-alist
	     '(:with-inlinetasks nil "inline" org-export-with-inlinetasks))

(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)

(defadvice org-e-latex-inlinetask (after org-e-export-inlinetask-p)
  "Return an inlinetask string if :with-inlinetasks is t otherwise
  return nothing"
  (if (not (plist-get info :with-inlinetasks))
      (setq ad-return-value "")))

(ad-activate 'org-e-latex-inlinetask)
#+END_SRC

If this is of high enough standards it could perhaps be added to the
worg. . .

–Rasmus

-- 
In theory, practice and theory are the same. In practice they are not

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-08-16 11:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-14 12:19 Activate/deactivate export of inlinetasks with #+OPTIONS Rasmus
2012-08-14 12:49 ` Rasmus
2012-08-14 19:17 ` Suvayu Ali
2012-08-14 21:48 ` Bastien
2012-08-16 10:51   ` Nicolas Goaziou
2012-08-16 11:05     ` Bastien

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).