We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5a349b commit d6dee4aCopy full SHA for d6dee4a
1 file changed
utils/editors/markdown-editor/html/output-md/v2.0/output-md-v2.0.html
@@ -181,8 +181,8 @@
181
script.onload = onload;
182
document.head.append(script);
183
184
- get('/css/npm.css').then({txt='',error}=>(css.npm=txt,onload()));
185
- get('/css/github-markdown-light.css').then({txt='',error}=>(css.github=txt,onload()));
+ get('/css/npm.css').then(({txt='',error})=>(css.npm=txt,onload()));
+ get('/css/github-markdown-light.css').then(({txt='',error})=>(css.github=txt,onload()));
186
187
return promise;
188
@@ -219,6 +219,7 @@
219
var error = await res.text();
220
return {error};
221
}
222
+
223
var txt = await res.text();
224
return {txt};
225
0 commit comments