We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment I am not able to initiate flask-markdown with the application factory pattern. Would be nice if this will be supported in future.
from flaskext.markdown import Markdown markdown = Markdown() def create_app(config_name): app = Flask(__name__) markdown.init_app(app)
Btw standard flask extensions can be imported like from flask_markdown import Markdown. Why is it not like this?
from flask_markdown import Markdown
The text was updated successfully, but these errors were encountered:
Seconded, I would also like to see support for the application factory pattern. I may try to implement it on my own.
Sorry, something went wrong.
Would love to see this!
#20 Here is a request for it
No branches or pull requests
At the moment I am not able to initiate flask-markdown with the application factory pattern. Would be nice if this will be supported in future.
Btw standard flask extensions can be imported like
from flask_markdown import Markdown
. Why is it not like this?The text was updated successfully, but these errors were encountered: