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