Instead of using using the inserted text which is not html and therefore will not be displayed as html (\r\n is not a "p" tag etc), you could use a formatting language like markdown (as you mentioned).
Otherwise you will need to replace/parse the entered text manually (which I think is not a good idea, because languages like markdown have been invented for this).
There are some good python libraries to convert markdown (the data you store in database) to html, like python-markdown2.
It's really easy to use, see the examples from the python-markdown link:
>>> import markdown2
>>> markdown2.markdown("*boo!*") # or use `html = markdown_path(PATH)`
u'<p><em>boo!</em></p>\n'
>>> markdowner = Markdown()
>>> markdowner.convert("*boo!*")
u'<p><em>boo!</em></p>\n'
>>> markdowner.convert("**boom!**")
u'<p><strong>boom!</strong></p>\n'
This forces you to enter the content using markdown syntax (or whatever format you use). To make this easier, you could use an wysiwyg-editor that creates the markdown for you (like the editor here on Stackoverflow).
I think Stackoverflow uses wmd but there are a lot of other markdown wysiwyg editors.
Example for wmd:
<html>
<head>
<title>WMD Example using jquery</title>
<link rel="stylesheet" type="text/css" href="wmd.css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.wmd.min.js"></script>
</head>
<body>
<h1>WMD Example using jquery</h1>
<div>
<textarea id="notes"/>
</div>
<script type="text/javascript">
$().ready(function() {
$("#notes").wmd();
});
</script>
</body>
</html>