2024-01-23 20:37:41 +08:00
|
|
|
|
using YaeBlog.Core.Models;
|
|
|
|
|
|
|
|
|
|
namespace YaeBlog.Core.Abstractions;
|
|
|
|
|
|
|
|
|
|
public interface IPreRenderProcessor
|
|
|
|
|
{
|
2024-01-24 21:32:14 +08:00
|
|
|
|
Task<BlogContent> ProcessAsync(BlogContent content);
|
2024-01-23 20:37:41 +08:00
|
|
|
|
|
|
|
|
|
string Name { get; }
|
|
|
|
|
}
|