From 4af10ea3c9c4ca6d51292257efa0cfa18864af3f Mon Sep 17 00:00:00 2001
From: Wayne Witzel III <wwitzel@geek.net>
Date: Wed, 20 Jul 2011 17:57:53 +0000
Subject: [PATCH] Fixed output formatting

Signed-off-by: Wayne Witzel III <wwitzel@geek.net>
---
 Allura/allura/lib/macro.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Allura/allura/lib/macro.py b/Allura/allura/lib/macro.py
index 762adad..88f2426 100644
--- a/Allura/allura/lib/macro.py
+++ b/Allura/allura/lib/macro.py
@@ -106,7 +106,7 @@ def neighborhood_blog_posts(max_number=5, sort='timestamp'):
                 title=post.title,
                 author=post.author().display_name,
                 ago=h.ago(post.timestamp),
-                description=post.text))
+                description=g.markdown.convert(post.text)))
         for post in posts if security.has_access(post, 'read', project=post.app.project)() and
                              security.has_access(post.app.project, 'read', project=post.app.project)())
     return output
-- 
1.7.4.1
