mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 19:36:23 +08:00

* IHtmlFilter and TokenFilter improvements and bugfixes. This changeset unifies the two separate TokenFilter implementations (one for BodyPart, TextField, etc and another one for certain elements such as Html). It also fixes a bug with the TokenFilter when executing for HtmlWidget, where the wrong content item is being recorded by the handler (the original implementation). Thirdly, it removes awkward code repetition by moving filter execution into a dedicated HtmlFilterRunner service. * Renaming IHtmlFilterRunner to IHtmlFilterProcessor (and its references) * Applying IHtmlFilterProcessor to HtmlMenuItems too + code styling in BodyPartDriver * Fixing FeedControllerTests.CorePartValuesAreExtracted * Code styling --------- Co-authored-by: Jean-Thierry Kéchichian <jean-thierry.kechichian@wanadoo.fr> Co-authored-by: Sipke Schoorstra <sipke@ideliverable.com> Co-authored-by: Benedek Farkas <benedek.farkas@lombiq.com>
11 lines
345 B
Plaintext
11 lines
345 B
Plaintext
@using Orchard.Core.Common.Models
|
|
@using Orchard.Services
|
|
|
|
@{
|
|
var htmlFilterProcessor = WorkContext.Resolve<IHtmlFilterProcessor>();
|
|
var bodyPart = Model.Content.BodyPart as BodyPart;
|
|
var bodyText = htmlFilterProcessor.ProcessFilters(bodyPart.Text, bodyPart.GetFlavor(), bodyPart);
|
|
}
|
|
|
|
<span class="raw">@Html.Raw(bodyText)</span>
|