Skip to content

Instantly share code, notes, and snippets.

@gtuckerkellogg
Created April 6, 2014 09:09
Show Gist options
  • Save gtuckerkellogg/10003416 to your computer and use it in GitHub Desktop.
Save gtuckerkellogg/10003416 to your computer and use it in GitHub Desktop.

(defun my/org-export-ignoreheadings-hook (backend) “My backend aware export preprocess hook.” (save-excursion (let* ((tag “ignoreheading”)) (org-map-entries (lambda () (delete-region (point-at-bol) (point-at-eol))) (concat “:” tag “:”))) ))

(setq org-export-before-processing-hook ‘my/org-export-ignoreheadings-hook)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment