mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
a bug about options
Ensure it can traverse the extensions list
This commit is contained in:
parent
2e102c72b2
commit
c579d08c9a
|
@ -218,6 +218,12 @@ this.makeHtml = function(text) {
|
||||||
if (converter_options && converter_options.extensions) {
|
if (converter_options && converter_options.extensions) {
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
// if a string is given like this new Showdown.converter({ extensions: 'github' })
|
||||||
|
// Ensure it can traverse the extensions list
|
||||||
|
if(typeof converter_options.extensions === 'string'){
|
||||||
|
converter_options.extensions = [converter_options.extensions];
|
||||||
|
}
|
||||||
|
|
||||||
// Iterate over each plugin
|
// Iterate over each plugin
|
||||||
Showdown.forEach(converter_options.extensions, function(plugin){
|
Showdown.forEach(converter_options.extensions, function(plugin){
|
||||||
|
|
Loading…
Reference in New Issue
Block a user