Hi
I have a Razor tag, where i want to publish first 260 Characters, but i want it to not output nordic charachters as broken - look at some of the endings of the newselements on this page, where the chars are broken. http://heilsurokt.net.dynamicweb-cms.com/oell-tidindi
How do i make shure in razor, that these chars are not broken or not html´ized? I think I recall that I have used StripHtml() for this in regular templates.
This is the loop
@Include("includes/NewsList.cshtml")
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<h3 class="dw-section-title"><span>@GetGlobalValue("Global:Page.Name")</span></h3>
</div>
</div>
<section class="slice">
<ul class="list-listings blog-list">
@GetNewsList(GetLoop("ItemPublisher:Items.List"), 260)
</ul>
</section>