bandantonio on develop
docs: fully revised event syste… docs: update README to get rid … docs: add document about local … and 2 more (compare)
tivie on 922-commonmark-compliance
codespans partial compliance C… (compare)
tivie on 922-commonmark-compliance
hard line break implementation (compare)
tivie on 922-commonmark-compliance
improve compliance in fenced bl… (compare)
tivie on 922-commonmark-compliance
some more compliance stuff (compare)
tivie on 922-commonmark-compliance
several compliance fixes Close… (compare)
I'm trying to load the twitter extension (I suppose it's for twitter-bootstrap) but I failed. I have downloaded the js and put it in my folder extension.
<script src="extensions/twitter.js"></script>
[...] // HTML and the beginning of the second script tag
var converter = new showdown.Converter({'tables' : true, 'ghCodeBlocks' : true, extensions : 'twitter' });
I think I can load this extensions with the options at the same time. But I have the following response error: Uncaught Error: Extension "t" could not be loaded. It was either not found or is not a valid extension.(…)
. So I have tried the version server side (where extensions key takes an array) but I have this error: showdown.js:799Uncaught Error: Extension "twitter" could not be loaded. It was either not found or is not a valid extension.
Can someone help me, please ? :)
Thank you in advance ^^
var converter = new showdown.Converter({'tables' : true, 'ghCodeBlocks' : true, extensions : ['twitter'] });
I have this error Uncaught Error: Extension "twitter" could not be loaded. It was either not found or is not a valid extension.
<script src="showdown.min.js"></script>
<script src="showdown-twitter.min.js"></script>
<script>
var converter = new showdown.Converter({'tables' : true, 'ghCodeBlocks' : true, extensions : ['twitter'] });
</script>
## Header 2
by default converts to <h2>Header 2</h2>
<h2 class="anchor">Header 2 <a class="anchor-link" title="permalink to section" href="#header2"
name="header2">¶</a></h2>