Fixed #381. Case-insensitive notes.

This commit is contained in:
Yujie Wen 2019-09-19 00:27:29 +08:00
parent 4abd898da3
commit d692f2fae4
1 changed files with 1 additions and 1 deletions

View File

@ -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 "<aside class=\"notes\">\n%s\n</aside>\n" contents))