Hey,
thanks for creating this project. In my project I prefer to write code in rst docstrings as doctest:
def foo():
"""Bar.
.. doctest::
>>> import inspect
>>> def foo(a: int) -> str:
... return str(a)
...
Do you see any way to also support doctest in this plugin?