Browse Source

Fix include logic was replacing https include with http

v0.8.7-release
isaacs 13 years ago
parent
commit
851b3970e7
  1. 2
      tools/doc/generate.js

2
tools/doc/generate.js

@ -86,7 +86,7 @@ function processIncludes(input, cb) {
if (er) return cb(errState = er);
incCount--;
includeData[fname] = inc;
input = input.split(include).join(includeData[fname]);
input = input.split(include+'\n').join(includeData[fname]+'\n');
if (incCount === 0) {
return cb(null, input);
}

Loading…
Cancel
Save