8 lines
204 B
C#
8 lines
204 B
C#
namespace CarneiroTech.Services;
|
|
|
|
public interface IMarkdownService
|
|
{
|
|
string ConvertToHtml(string markdown);
|
|
Dictionary<string, object> ParseFrontMatter(string content, out string bodyContent);
|
|
}
|