我在python中使用markdown2库将markdown转换为html。
但是,它不支持常见的图像格式化
[![alt text][some link]][img src link]
应转换为
<a href="some link" rel="alt text"><img src="img src link"/></a>
但我主要是从这个和其他降价库中获取
import markdown2
markdown2.markdown('[![hi][http://google.com]][http://example.com/png]')
u'<p>[![hi][http://google.com]][http://example.com/png]</p>\n'
如果我想在我的降价文件中包含最终转换为html的图像,我有哪些选项。