使用在Flask上编写的简单博客引擎(https://github.com/dmaslov/flask-blog)接受markdown撰写帖子。
Markdown应该支持HTML。出于某种原因,我的HTML无法被识别,我的标签就像文字一样呈现。
在我的应用程序文件中,我有
from flaskext.markdown import Markdown
md = Markdown(app, safe_mode=False, output_format='html5')
在我的烧瓶应用程序中使用flask.markdown库https://pythonhosted.org/Flask-Markdown/。
这应该允许我在我的帖子中沿着侧面降价使用HTML,但由于某种原因它不是。
答案 0 :(得分:1)
此引擎转义html标记。不幸或幸运的是,你可能只使用所见即所得的编辑器。
在cgi.escape(post_data['body'], quote=True)
档案
第162行
def calculate_RPKM(theC,theN,theL):
"""
theC == Total reads mapped to a feature (gene/linc)
theL == Length of feature (gene/linc)
theN == Total reads mapped
"""
rpkm = ((10 ** 9) * theC)/(theN * theL)
return rpkm
df['rpkm'] = calculate_RPKM(df['count'], N, df['gene_length'])
有关逃避cgi.escape
的详细信息