I thought I would throw my 2 cents in here since I was looking to solve a similar issue.
In my case I'm very new to Python and Pyramid and I am modifying the Single File Tasks Tutorial to create a (very) simple blog.
My post content was saved as a string in a sqlite database. The problem was that when the content string was output to the template html tags were appearing as plain text.
So rather than:

I was getting:

Adding the | n filter solved my issue. HTML content now displays correctly in my post bodies.
My template (.mako) for the list of posts:
# -*- coding: utf-8 -*-
<%inherit file="layout.mako"/>
<ul id="posts">
% if posts:
% for post in reversed(posts):
<li>
<span class="name">${post['name']}</span>
<span class="content">${post['content'] | n}</span>
</li>
% endfor
% else:
<li>Sorry, no posts...</li>
% endif
</ul>
and the view_config:
@view_config(route_name='list', renderer='list.mako')
def list_view(request):
rs = request.db.execute("select id, name, content from posts")
posts = [dict(id=row[0], name=row[1], content=row[2]) for row in rs.fetchall()]
return {'posts': posts}
This answer helped me out.
I hope this helps someone.