OLD | NEW |
1 /** | 1 /** |
2 * marked - a markdown parser | 2 * marked - a markdown parser |
3 * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed) | 3 * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed) |
4 * https://github.com/chjj/marked | 4 * https://github.com/chjj/marked |
5 */ | 5 */ |
6 | 6 |
7 ;(function() { | 7 ;(function() { |
8 | 8 |
9 /** | 9 /** |
10 * Block-Level Grammar | 10 * Block-Level Grammar |
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1257 module.exports = marked; | 1257 module.exports = marked; |
1258 } else if (typeof define === 'function' && define.amd) { | 1258 } else if (typeof define === 'function' && define.amd) { |
1259 define(function() { return marked; }); | 1259 define(function() { return marked; }); |
1260 } else { | 1260 } else { |
1261 this.marked = marked; | 1261 this.marked = marked; |
1262 } | 1262 } |
1263 | 1263 |
1264 }).call(function() { | 1264 }).call(function() { |
1265 return this || (typeof window !== 'undefined' ? window : global); | 1265 return this || (typeof window !== 'undefined' ? window : global); |
1266 }()); | 1266 }()); |
OLD | NEW |