我定型了正在使用果園一個網站,我注意到他們是具有消息的自定義內容類型,這裏是HTML如何覆蓋核心共同的看法在烏節
<p>Some text</p>
<p>Some more text</p>
標準的消息這是細但是由於它被插入每個</p>
這裏後<br />
的Orchard.Core.Common.Views.Fields.Common.Text.cshtml是他們的視圖,其呈現所述消息
@using Orchard.Utility.Extensions;
@{
string name = Model.ContentField.DisplayName;
}
@if (HasText(name) && HasText(Model.Value)) {
<p class="text-field"><span class="name">@name:</span> <span class="value">@(new MvcHtmlString(Html.Encode((HtmlString) Model.Value).ReplaceNewLinesWith("<br />")))</span></p>
}
我怎樣才能覆蓋這個?我試圖將視圖複製並粘貼到我的主題/視圖文件夾中,但似乎並未覆蓋它。我只是想刪除".ReplaceNewLinesWith("<br />")"