gpt4 book ai didi

python - Appengine 和 Markdown 导致文本间隔 : < p > W o r d

转载 作者:行者123 更新时间:2023-11-30 23:39:35 24 4
gpt4 key购买 nike

我在使用 Markdown 正确渲染 html 时遇到问题。我在用 python-markdown在应用程序引擎 2.7 中

我的问题是我在 HTML - 命名空间中的字符之间遇到了很多空格?像这样< code >code< / code > .

这是我的类(class):

class Text(webapp2.RequestHandler):
def post(self):
text = self.request.get('content')
html = markdown.markdown(text)

template_values = {'html': html}

这是我的 html:

<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
</head>
<body>
{% for html in html %}
{{ html }}
{% endfor %}
</body>
</html>

这是正在发生的事情的另一个示例:

# Word 

变成:

< h 1 >Word< / h 1 >

最佳答案

您正在解释作为列表返回的 HTML;通过循环文本,您可以创建单个字符:

>>> for ch in 'sample':
... print ch,
s a m p l e

直接插入 html 变量即可:

<body>
{{ html }}
</body>

关于python - Appengine 和 Markdown 导致文本间隔 : < p > W o r d </p >,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13417869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com