We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52076e3 commit e732250Copy full SHA for e732250
src/jupyter_contrib_nbextensions/nbextensions/python-markdown/main.js
@@ -20,13 +20,13 @@ define([
20
"use strict";
21
22
var marked = null;
23
- requirejs('nbextensions/python-markdown/marked.min',
+ requirejs(['nbextensions/python-markdown/marked.min'],
24
function(marked_local) {
25
marked = marked_local.marked;
26
},
27
function(e_ignored) {
28
// fall back to components for v<6.
29
- requirejs('components/marked/lib/marked',
+ requirejs(['components/marked/lib/marked'],
30
function(marked_compat) {
31
marked = marked_compat;
32
0 commit comments