Zelphir Kaltstahl
Zelphir Kaltstahl

Reputation: 6189

Markdown in Spyder IDE

I was experimenting in the Spyder IDE and learned, that it is possible to define cells using the #%% separator. Now I couldn't find it, but is it possible to use markdown, like in a Jupyter notebook?

Upvotes: 16

Views: 13965

Answers (2)

Mauro
Mauro

Reputation: 47

If you want to comment/uncomment you could use CTRL +1 to change a single line, and with CTRL+4 you could change an entire block.

Upvotes: 1

Michael Tesař
Michael Tesař

Reputation: 338

No. As far as I know Spyder IDE has no markdown implemented as Jypter notebook even if it is connecting to a Jupyer notebook instance locally.

I would suggest you to use Jupyter notebook for coding and annotation if you need such a thing. Spyder is just a IDE. But if you want to edit Jupyter notebook in a IDE just take a look at PyCharm IDE.

Upvotes: 11

Related Questions