7 lines
No EOL
168 B
JavaScript
7 lines
No EOL
168 B
JavaScript
wn.markdown = function(txt) {
|
|
if(!wn.md2html) {
|
|
wn.require('lib/js/lib/showdown.js');
|
|
wn.md2html = new Showdown.converter();
|
|
}
|
|
return wn.md2html.makeHtml(txt);
|
|
} |