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 CHANGED
@@ -1,3 +1,3 @@
1
1
  # syntax=docker/dockerfile:1
2
2
 
3
- FROM darkbluestudios/jupyter-ijavascript-utils:binder_1.60.0
3
+ FROM darkbluestudios/jupyter-ijavascript-utils:binder_1.60.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyter-ijavascript-utils",
3
- "version": "1.60.0",
3
+ "version": "1.60.1",
4
4
  "description": "Utilities for working with iJavaScript - a Jupyter Kernel",
5
5
  "homepage": "https://jupyter-ijavascript-utils.onrender.com/",
6
6
  "license": "MIT",
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(markdownText, display);
283
+ displayToUse.mime({ 'text/markdown': markdownText });
284
284
  } else {
285
285
  displayToUse.html('<span class="output-to-be-removed-from-printing">&nbsp;</span>');
286
286
  }