1

我在使用 markdown 正确渲染 html 时遇到问题。我 在 appengine 2.7 中使用python-markdown

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

这是我的课:

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 >
4

1 回答 1

3

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

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

只需直接插入html变量:

<body>
    {{ html }}
</body>
于 2012-11-16T13:52:26.940 回答