using OliverBooth.Markdown.Template;
namespace OliverBooth.Services;
///
/// Represents a service that renders MediaWiki-style templates.
///
public interface ITemplateService
{
///
/// Renders the specified template with the specified arguments.
///
/// The template to render.
/// The rendered template.
///
/// is .
///
string RenderTemplate(TemplateInline templateInline);
}