* 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>
9 lines
177 B
C#
9 lines
177 B
C#
using Umbraco.Cms.Core.Models.DeliveryApi;
|
|
|
|
namespace Umbraco.Cms.Core.DeliveryApi;
|
|
|
|
public interface IApiRichTextElementParser
|
|
{
|
|
IRichTextElement? Parse(string html);
|
|
}
|