Comparing version 0.1.2 to 0.1.3
@@ -30,5 +30,12 @@ var util = require('util'); | ||
else { | ||
if (this[other_slot] === undefined) { | ||
this[other_slot] = []; | ||
} | ||
if (this[state_slot] === undefined) { | ||
this[state_slot] = []; | ||
} | ||
// Store a clone of the em/strong states | ||
var other = this[other_slot].slice(), | ||
state = this[state_slot].slice(); | ||
state = this[state_slot].slice(); | ||
@@ -35,0 +42,0 @@ this[state_slot].unshift(md); |
{ | ||
"name" : "namp", | ||
"version" : "0.1.2", | ||
"version" : "0.1.3", | ||
"description" : "Markdown parser for Node, with Maruku, GFM, and PHP Extras support, plus more.", | ||
@@ -5,0 +5,0 @@ "keywords" : [ "markdown", "maruku", "gfm", "text processing", "ast" ], |
@@ -165,7 +165,2 @@ #!/usr/bin/env node | ||
var time = function() { | ||
var marked = require('../'); | ||
main.bench('marked', marked); | ||
}; | ||
var bench_load = function() { | ||
@@ -296,4 +291,2 @@ files = {}; | ||
bench(); | ||
} else if (~process.argv.indexOf('--time')) { | ||
time(); | ||
} else { | ||
@@ -300,0 +293,0 @@ main(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
474407