diff options
author | Hakim El Hattab | 2012-07-31 01:13:33 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-07-31 01:13:33 -0400 |
commit | 19852772fe3aaa22d3447cb57b5e1b84d69814ba (patch) | |
tree | 6c74d353559a7bacb07a7bc57dab317cb95c81bd /lib/js/data-markdown.js | |
parent | dc05ce1575ccf5026e553488133807b36acf50c8 (diff) |
support for data-markdown (#15)
Diffstat (limited to 'lib/js/data-markdown.js')
-rw-r--r-- | lib/js/data-markdown.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/js/data-markdown.js b/lib/js/data-markdown.js new file mode 100644 index 0000000..d1b27c4 --- /dev/null +++ b/lib/js/data-markdown.js @@ -0,0 +1,19 @@ +// From https://gist.github.com/1343518, modified to not load showdown +(function boom(){ + + [].forEach.call( document.querySelectorAll('[data-markdown]'), function fn(elem){ + + // strip leading whitespace so it isn't evaluated as code + var text = elem.innerHTML.replace(/\n\s*\n/g,'\n'), + // set indentation level so your markdown can be indented within your HTML + leadingws = text.match(/^\n?(\s*)/)[1].length, + regex = new RegExp('\\n?\\s{' + leadingws + '}','g'), + md = text.replace(regex,'\n'), + html = (new Showdown.converter()).makeHtml(md); + + // here, have sum HTML + elem.innerHTML = html; + + }); + +}());
\ No newline at end of file |