File tree Expand file tree Collapse file tree
src/vs/base/common/marked Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 * Licensed under the MIT License. See License.txt in the project root for license information.
44 *--------------------------------------------------------------------------------------------*/
55
6- require . config ( {
7- shim : {
8- 'vs/base/common/marked/raw.marked' : {
9- exports : function ( ) {
10- return this . marked ;
11- }
12- }
13- }
14- } ) ;
15-
166define ( [ './raw.marked' ] , function ( marked ) {
177 return {
188 marked : marked
Original file line number Diff line number Diff line change @@ -1265,7 +1265,9 @@ marked.inlineLexer = InlineLexer.output;
12651265marked . parse = marked ;
12661266
12671267// TODO MonacoChange: we have our own way of defining modules
1268- this . marked = marked ;
1268+ define ( [ ] , function ( ) {
1269+ return marked ;
1270+ } ) ;
12691271//if (typeof module !== 'undefined' && typeof exports === 'object') {
12701272// module.exports = marked;
12711273//} else if (typeof define === 'function' && define.amd) {
You can’t perform that action at this time.
0 commit comments