CarneiroTech/Services/IMarkdownService.cs

8 lines
204 B
C#

namespace CarneiroTech.Services;
public interface IMarkdownService
{
string ConvertToHtml(string markdown);
Dictionary<string, object> ParseFrontMatter(string content, out string bodyContent);
}