from markdownify import MarkdownConverter class ImageBlockConverter(MarkdownConverter): """ Create a custom MarkdownConverter that adds two newlines after an image """ def convert_img(self, el, text, convert_as_inline): return super().convert_img(el, text, convert_as_inline) + '\n\n' def test_img(): # Create shorthand method for conversion def md(html, **options): return ImageBlockConverter(**options).convert(html) assert md('Alt text') == '![Alt text](/path/to/img.jpg "Optional title")\n\n' assert md('Alt text') == '![Alt text](/path/to/img.jpg)\n\n'