public static SlideTemplate CreateFromHtml(string html) { var template = new SlideTemplate(); template._templateContent = html; return template; }
public string ToHtml(SlideTemplate template, SlideTemplateContent templateContent) { templateContent.Content = Body; return template.CreateHtml(templateContent) .Replace("<code>", "<code class=\"prettyprint\">"); }