mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Consider introducing generic extension registry method to MarkdownPipelineBuilder #78
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @christophano on GitHub (Dec 15, 2016).
While I like having specific extension methods to load specific extensions onto the pipeline builder, it is also handy not to have to create an extension method for every extension I create.
To that end, I tend to use a single extension method for registering simple extensions.
Would you consider including this method on the
MarkdownPipelinBuilderclass itself? Happy to complete a pull request for this.Method:
Usage:
@xoofx commented on GitHub (Dec 15, 2016):
Sure it is a good idea to add this.