Merge pull request #1 from vpolouchkine/patch-1

Add the HtmlHelper.Raw method which renders unencoded HTML.
This commit is contained in:
Joseph Hill 2015-05-16 09:28:55 -04:00
Родитель 454d0aae4f ac99ca47a7
Коммит af7b7b0c9b
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,10 @@ namespace PortableRazor.Web.Mvc
_writer = writer;
}
public IHtmlString Raw(string value) {
return new HtmlString (value);
}
private string GenerateHtmlAttributes(object htmlAttributes) {
var attrs = new StringBuilder ();
if (htmlAttributes != null) {