Replies: 3 comments 4 replies
-
Similarly, I would be keen to know if it is possible to also hide the output of a code cell. |
Beta Was this translation helpful? Give feedback.
1 reply
-
You could write your markdown text in a code cell and hide its output like this: #| output: false
from IPython.display import display, Markdown
display(Markdown(f"""
text
""")) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Is there no directive we can put in the whole doc to hide markdown cells? And then selectively enable them? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Title says it all! I'm wondering if is is possible to hide a markdown cell from a Jupiter Notebook?
I can hide code ones as follows:
#| echo: false
Cheers,
Thomas
Beta Was this translation helpful? Give feedback.
All reactions