0

私は一晩中これと戦っています...

Python マークダウンを使用して .md ファイルから HTML ファイルを生成し、それらを他の HTML ファイルに埋め込もうとしています。

問題のあるスニペットは次のとおりです。

md = markdown.Markdown(encoding="utf-8")
input_file = codecs.open(f, mode="r", encoding="utf-8") # f is the name of the markdown file
text = input_file.read()
html = md.convert(text) # html generated from the markdown file

context = {
    'css_url': url_for('static', filename = 'markdown.css'),
    'contents': html
}

rendered_file = render_template('blog.html', **context)
output = open(splitext(f)[0] + '.html', 'w') # write the html to disk
output.write(rendered_file)
output.close()

これが私の「blog.html」テンプレートです。これは非常にシンプルです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>blog</title>
  <link rel="stylesheet" href="{{ css_url }}" type="text/css" />
</head>

<body>
  {{ contents }}
</body>

</html>

それでも、これは私が得るものです:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>blog</title>
  <link rel="stylesheet" href="/static/markdown.css" type="text/css" />
</head>

<body>
&lt;li&gt;People who love what they are doing&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ol&gt;
</body>

</html>

そのため、エンコーディングを既に「utf-8」に指定しているにもかかわらず、奇妙な「>」、「<」が表示されます。何がうまくいかない可能性がありますか?

ありがとうございました!

4

1 に答える 1

2

&lt;&gt;エンコーディングとは関係ありません。これらは、入力を表す HTML エンティティです。jinja が自動的にエスケープしないように、安全としてマークする必要があります。

{{ contents|safe }}
于 2013-01-13T07:49:22.337 に答える