Support loading plugins with config.#307
Open
benghancock wants to merge 1 commit intoventhur:masterfrom
Open
Conversation
Python-Markdown supports a number of extensions, and users of `blag` may wish to utilize those beyond the defaults. This set of changes supports loading those extensions by adding a line to the configuration file, while adding some checks to make sure that an error is raised if a non-existent extension is named.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @venthur !
Thanks for creating blag. I really enjoy using it, and have put together a proposed feature enhancement that I hope fits with the goals of the project. I'd welcome any feedback. Let me know if these changes don't mesh with the design, are too broad in scope, or just don't pass muster for another reason.
Rationale
Python-Markdown supports a number of extensions, and users of
blagmay wish to utilize those beyond the defaults. This set of changes supports loading those extensions by adding a line to their configuration file, while adding some checks to make sure that an error is raised if a non-existent extension is named.This work was started some time ago and initially motivated by blag's lack of support for the
footnotesextension, which is now supported. Still, I thought I would submit these changes in case other users want to easily make use of other extensions (as in #302) that are not currently supported out of the box.