diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-01-31 15:02:51 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-01-31 15:02:59 +0100 |
commit | 02a6b0515e03773352e93f84bbee651d640f33ff (patch) | |
tree | 408ecc66230f438b3bd0833d7bf74fc4360c7830 /plugin | |
parent | 37f3da60958d789a3a96536b502398abe35a6efa (diff) | |
download | fosdem-2018-presentation-02a6b0515e03773352e93f84bbee651d640f33ff.tar fosdem-2018-presentation-02a6b0515e03773352e93f84bbee651d640f33ff.tar.gz |
fix markdown typo, update comment #1780
Diffstat (limited to 'plugin')
-rwxr-xr-x | plugin/markdown/markdown.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js index aad7f63..d9ff1ba 100755 --- a/plugin/markdown/markdown.js +++ b/plugin/markdown/markdown.js @@ -30,8 +30,9 @@ * element. Normalizes leading tabs/whitespace. */ function getMarkdownFromSlide( section ) { - // support <textarea data-template> `some code` </textarea> - var template = section.querySelector( '[data-tempate]' ) || section.querySelector( 'script' ); + + // look for a <script> or <textarea data-template> wrapper + var template = section.querySelector( '[data-template]' ) || section.querySelector( 'script' ); // strip leading whitespace so it isn't evaluated as code var text = ( template || section ).textContent; |