using YaeBlog.Core.Models; namespace YaeBlog.Core.Abstractions; public interface IPreRenderProcessor { Task ProcessAsync(BlogContent content); string Name { get; } }