From d692f2fae4b01bb10b47828692e1654fb339bbee Mon Sep 17 00:00:00 2001 From: Yujie Wen Date: Thu, 19 Sep 2019 00:27:29 +0800 Subject: [PATCH] Fixed #381. Case-insensitive notes. --- ox-reveal.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ox-reveal.el b/ox-reveal.el index 972ddd6..a793bdc 100644 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -366,7 +366,7 @@ If the block type is 'NOTES', transcode the block into a Reveal.js slide note. Otherwise, export the block as by the HTML exporter." (let ((block-type (org-element-property :type special-block))) - (if (string= block-type "NOTES") + (if (string= (upcase block-type) "NOTES") (if org-reveal-ignore-speaker-notes "" (format "\n" contents))