* non-beamer :ignoreheading: does not work for html (org 8.2.5h)
@ 2014-03-17 11:40 Miguel Ruiz
0 siblings, 0 replies; only message in thread
From: Miguel Ruiz @ 2014-03-17 11:40 UTC (permalink / raw)
To: orgmode mailing list
Hi
The Suvayu edited answer of Jul 26 '13 at 11:42
http://stackoverflow.com/questions/10295177/is-there-an-equivalent-of-org-modes-b-ignoreheading-for-non-beamer-documents
#+begin_src elisp
(require 'ox)
(defun sa-ignore-headline (contents backend info)
"Ignore headlines with tag `ignoreheading'."
(when (and (org-export-derived-backend-p backend 'latex 'html 'ascii)
(string-match "\\`.*ignoreheading.*\n"
(downcase contents)))
(replace-match "" nil nil contents)))
(add-to-list 'org-export-filter-headline-functions 'sa-ignore-headline)
#+end_src elisp
for me, works for latex and ascii backends but not for html.
Can anyone reproduce it? Any hints?
TIA
Emacs 24.3, orgmode 8.2.5h-61-g39cfc3
____________________________________________________________
FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
Check it out at http://www.inbox.com/earth
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-17 11:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-17 11:40 non-beamer :ignoreheading: does not work for html (org 8.2.5h) Miguel Ruiz
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.