mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
build
This commit is contained in:
parent
bf8b3649ad
commit
9ab2af0e89
|
@ -89,7 +89,7 @@ module.exports = function (grunt) {
|
||||||
options: {
|
options: {
|
||||||
globals: ['should'],
|
globals: ['should'],
|
||||||
timeout: 3000,
|
timeout: 3000,
|
||||||
ignoreLeaks: false,
|
ignoreLeaks: true,
|
||||||
reporter: 'spec'
|
reporter: 'spec'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
BIN
dist/showdown.js
vendored
BIN
dist/showdown.js
vendored
Binary file not shown.
BIN
dist/showdown.js.map
vendored
BIN
dist/showdown.js.map
vendored
Binary file not shown.
BIN
dist/showdown.min.js
vendored
BIN
dist/showdown.min.js
vendored
Binary file not shown.
BIN
dist/showdown.min.js.map
vendored
BIN
dist/showdown.min.js.map
vendored
Binary file not shown.
|
@ -53,7 +53,8 @@ showdown.subParser('codeSpans', function (text) {
|
||||||
c = c.replace(/[ \t]*$/g, ''); // trailing whitespace
|
c = c.replace(/[ \t]*$/g, ''); // trailing whitespace
|
||||||
c = showdown.subParser('encodeCode')(c);
|
c = showdown.subParser('encodeCode')(c);
|
||||||
return m1 + '<code>' + c + '</code>';
|
return m1 + '<code>' + c + '</code>';
|
||||||
});
|
}
|
||||||
|
);
|
||||||
|
|
||||||
return text;
|
return text;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user