Here is my solution.
@MvcHtmlString.Create(Regex.Replace(Html.Encode(Model.Address), Environment.NewLine, "
", RegexOptions.Multiline))
and of course, you will have to add following using statement for Regex to work.
@using System.Text.RegularExpressions
Hope it is useful for someone.