diff --git a/umbraco.MacroEngines.Juno/RazorDynamicNode/RazorLibraryCore.cs b/umbraco.MacroEngines.Juno/RazorDynamicNode/RazorLibraryCore.cs index 55407bcab2..1e9d701834 100644 --- a/umbraco.MacroEngines.Juno/RazorDynamicNode/RazorLibraryCore.cs +++ b/umbraco.MacroEngines.Juno/RazorDynamicNode/RazorLibraryCore.cs @@ -5,6 +5,8 @@ using System.Text; using umbraco.interfaces; using System.Xml.Linq; using System.Xml.XPath; +using System.Web; +using System.IO; namespace umbraco.MacroEngines.Library { @@ -258,5 +260,71 @@ namespace umbraco.MacroEngines.Library } return item; } + + + public string StripHtml(IHtmlString html) + { + return StripHtml(html.ToHtmlString()); + } + public string StripHtml(string html) + { + return StripHtmlTags(html); + } + + //ge: this method won't deal with