jupyter-ijavascript-utils 1.60.0 → 1.60.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +1 -1
- package/package.json +1 -1
- package/src/ijs.js +1 -1
package/Dockerfile
CHANGED
package/package.json
CHANGED
package/src/ijs.js
CHANGED
|
@@ -280,7 +280,7 @@ module.exports.internalComment = function internalComment(shouldRender, markdown
|
|
|
280
280
|
if (!IJSUtils.detectIJS()) return;
|
|
281
281
|
const displayToUse = display || global.$$;
|
|
282
282
|
if (shouldRender) {
|
|
283
|
-
displayToUse.markdown
|
|
283
|
+
displayToUse.mime({ 'text/markdown': markdownText });
|
|
284
284
|
} else {
|
|
285
285
|
displayToUse.html('<span class="output-to-be-removed-from-printing"> </span>');
|
|
286
286
|
}
|