I have a Python project where i used restructuredText to comment/documentate each of my classes/functions. Here's a sample of my docstring :
"""
Updates the contacts birth date in batch
:param nb_contacts: nb_contacts: number of contacts to update
:param batch_size: size of the batch
:param context: airflow context
:return: true if update is successful
"""
I wanna generate .md files from my code. Is there anyway to do it ?