I\'m using the following to make the text output the line breaks entered in a HTML element.
MvcHtmlString.Create(Model.Post.Des
Just use a tag. @Model.Post.Description
@Model.Post.Description
Or
@Html.Raw(HttpUtility.HtmlDecode(Model.Post.Description.Replace("\r\n", "")))