Browse Source

org-lint: Tolerate drawers in footnotes section

* lisp/org-lint.el (org-lint-extraneous-element-in-footnote-section):
  Tolerate drawers (e.g., logbook) as extraneous elements in a footnote
  section.
Nicolas Goaziou 8 years ago
parent
commit
f0b3fa5e6e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-lint.el

+ 1 - 1
lisp/org-lint.el

@@ -836,7 +836,7 @@ Use \"export %s\" instead"
 	   (org-element-map (org-element-contents h)
 	       (cl-remove-if
 		(lambda (e)
-		  (memq e '(comment comment-block footnote-definition
+		  (memq e '(comment comment-block drawer footnote-definition
 				    property-drawer section)))
 		org-element-all-elements)
 	     (lambda (e)