Python : How to convert markdown formatted text to

2019-01-31 03:29发布

I need to convert markdown text to plain text format to display summary in my website. I want the code in python.

2条回答
可以哭但决不认输i
2楼-- · 2019-01-31 04:06

This module will help do what you describe:

http://www.freewisdom.org/projects/python-markdown/Using_as_a_Module

Once you have converted the markdown to HTML, you can use a HTML parser to strip out the plain text.

Your code might look something like this:

from BeautifulSoup import BeautifulSoup
from markdown import markdown

html = markdown(some_html_string)
text = ''.join(BeautifulSoup(html).findAll(text=True))
查看更多
迷人小祖宗
3楼-- · 2019-01-31 04:20

Commented and removed it because I finally think I see the rub here: It may be easier to convert your markdown text to HTML and remove HTML from the text. I'm not aware of anything to remove markdown from text effectively but there are many HTML to plain text solutions.

查看更多
登录 后发表回答