diff options
Diffstat (limited to 'plugin/markdown')
-rw-r--r-- | plugin/markdown/example.html | 2 | ||||
-rwxr-xr-x | plugin/markdown/markdown.js | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/plugin/markdown/example.html b/plugin/markdown/example.html index 1253cba..ceed53f 100644 --- a/plugin/markdown/example.html +++ b/plugin/markdown/example.html @@ -16,7 +16,7 @@ <div class="slides"> - <!-- Use external markdown resource, and separate slides by three newlines; vertical slides by two newlines --> + <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines --> <section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n"></section> <!-- Slides are separated by three dashes (quick 'n dirty regular expression) --> diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js index dcab2fa..a5abc30 100755 --- a/plugin/markdown/markdown.js +++ b/plugin/markdown/markdown.js @@ -136,6 +136,12 @@ var xhr = new XMLHttpRequest(), url = section.getAttribute('data-markdown'); + datacharset = section.getAttribute('data-charset'); + // see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes + if (datacharset != null && datacharset != '') { + xhr.overrideMimeType('text/html; charset=' + datacharset); + } + xhr.onreadystatechange = function () { if( xhr.readyState === 4 ) { if (xhr.status >= 200 && xhr.status < 300) { |