Skip to content

Commit

Permalink
Fixed a bug in rstblog
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Feb 1, 2011
1 parent dd3bd4c commit 4c4fc7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rstblog/builder.py
Expand Up @@ -129,7 +129,7 @@ def render_rst(self, contents):
writer_name='html4css1',
settings_overrides=settings)
return {
'title': parts['title'],
'title': Markup(parts['title']).striptags(),
'html_title': Markup(parts['html_title']),
'fragment': Markup(parts['fragment'])
}
Expand Down

0 comments on commit 4c4fc7d

Please sign in to comment.