We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4611600 commit e25be32Copy full SHA for e25be32
webpack_boilerplate/contrib/jinja2ext.py
@@ -1,4 +1,5 @@
1
import jinja2.ext
2
+from markupsafe import Markup
3
4
from .. import utils
5
@@ -15,7 +16,7 @@ def stylesheet_pack(*names, **kwargs):
15
16
for sub_tag in sub_tags:
17
if sub_tag not in tags:
18
tags.append(sub_tag)
- return jinja2.Markup("\n".join(tags))
19
+ return Markup("\n".join(tags))
20
21
22
def javascript_pack(*names, **kwargs):
@@ -30,7 +31,7 @@ def javascript_pack(*names, **kwargs):
30
31
32
33
34
35
36
37
class WebpackExtension(jinja2.ext.Extension):
0 commit comments