Does PyCharm have Markdown support inside docstrings?
I want to insert in docstring markdown part, for example this:
```
[link!](http://google.com)
```
And i want it to show in pop-up window like this (vscode):
But PyCharm shows it like this:
Can i have docstring pop-up behavior like in vscode?
Please sign in to leave a comment.
Hello,
It depends on the Docstring format selected https://www.jetbrains.com/help/pycharm/type-syntax-for-docstrings.html , however non of them support Markdown.
For example, for RST the following syntaxes works with links https://sublime-and-sphinx-guide.readthedocs.io/en/latest/references.html#links-to-external-web-pages
I am also wondering what format type you use in VScode?
Also Google-style.