Adds titles to Markdown images. The title text is taken from the alt text of the image.
The basic syntax for adding images in Markdown is like this:

However, entering both the alt text and the title can be cumbersome.
With this extension, if no title is given, the alt text will automatically used as the title.

becomes
<img alt="Image description" src="assets/images/my-image.png" title="Image description" />pip install markdown-image-titles
md = markdown.Markdown(
extensions=[
'image_titles'
]
)