将markdown图像格式转换为html

时间:2014-09-13 21:10:50

标签: python html markdown

我在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的图像,我有哪些选项。

1 个答案:

答案 0 :(得分:2)

their source code中找到它,它们的图像格式略有不同。