You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
It's really amazing to write python code along with markdown in vscode via Jupyter Notebooks support. From the doc https://code.visualstudio.com/docs/python/jupyter-support-py, I can write the following code snippets in a .py file and run each cell.
# %% [markdown]# This is a markdown cell.# %%print("hello world")
I would also like to write js code like above in .js not .py file with the same coding experience. Maybe the code like the following.
// %% [markdown]// This is a markdown cell.// %%// This is a code cell.console.info("hello world")
However, I can only write js code with markdown in a .py file right now. I hava installed ijavascript and jp-babel jupyter kernel for js support.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It's really amazing to write python code along with markdown in vscode via Jupyter Notebooks support. From the doc https://code.visualstudio.com/docs/python/jupyter-support-py, I can write the following code snippets in a
.py
file and run each cell.I would also like to write js code like above in
.js
not.py
file with the same coding experience. Maybe the code like the following.However, I can only write js code with markdown in a
.py
file right now. I hava installedijavascript
andjp-babel
jupyter kernel for js support.The text was updated successfully, but these errors were encountered: