* Append start item to RTE markup * Split the Examine specifics from API query service (#14257) * Split the Examine specifics from API query service to a provider based model * Review changes: Use paged model as provider return value + add logging * Fix version * Revert incidentally changed version number by targeting wrong branch * Fix wrongly changed version number --- it's RC2 now --------- Co-authored-by: Nikolaj <nikolajlauridsen@protonmail.ch>
7 lines
121 B
C#
7 lines
121 B
C#
namespace Umbraco.Cms.Core.DeliveryApi;
|
|
|
|
public interface IApiRichTextMarkupParser
|
|
{
|
|
string Parse(string html);
|
|
}
|