Browse Source

self-execute data-markdown

embed
Hakim El Hattab 12 years ago
parent
commit
ff567372c0
  1. 6
      lib/js/data-markdown.js

6
lib/js/data-markdown.js

@ -1,8 +1,8 @@
// From https://gist.github.com/1343518, modified to not load showdown // From https://gist.github.com/1343518, modified to not load showdown
(function boom(){ (function(){
[].forEach.call( document.querySelectorAll('[data-markdown]'), function fn(elem){ [].forEach.call( document.querySelectorAll('[data-markdown]'), function fn(elem){
// strip leading whitespace so it isn't evaluated as code // strip leading whitespace so it isn't evaluated as code
var text = elem.innerHTML.replace(/\n\s*\n/g,'\n'), var text = elem.innerHTML.replace(/\n\s*\n/g,'\n'),
// set indentation level so your markdown can be indented within your HTML // set indentation level so your markdown can be indented within your HTML
@ -16,4 +16,4 @@
}); });
}()); })();
Loading…
Cancel
Save