diff --git a/OliverBooth/Program.cs b/OliverBooth/Program.cs index 5746e7e..9bce04b 100644 --- a/OliverBooth/Program.cs +++ b/OliverBooth/Program.cs @@ -16,19 +16,9 @@ builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddSingleton(provider => new MarkdownPipelineBuilder() - .UseAbbreviations() + .Use(new TemplateExtension(provider.GetRequiredService())) .UseAdvancedExtensions() .UseBootstrap() - .UseCitations() - .UseDiagrams() - .UseFigures() - .UseFooters() - .UseFootnotes() - .UseGlobalization() - .UseMathematics() - .UseAutoIdentifiers() - .UseAutoLinks() - .Use(new TemplateExtension(provider.GetRequiredService())) .Build()); builder.Services.AddDbContextFactory();