Commit c0b8e8a 1 parent e8ad198 commit c0b8e8a Copy full SHA for c0b8e8a
File tree 1 file changed +3
-1
lines changed
tools/documentation/scripts/content_modifiers
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,14 @@ def _verify_application(line: str):
15
15
excluded_config_script_tag_opening : str = "<script id=\" __config\" type=\" application/json\" "
16
16
excluded_schema_script : str = "type=\" application/ld+json\" "
17
17
excluded_inline_script_tag_with_no_attibutes : str = "<script>"
18
+ excluded_bundle_script : str = "/bundle."
18
19
19
20
if script_tag_opening not in line \
20
21
or excluded_config_script_tag_opening in line \
21
22
or excluded_schema_script in line \
22
23
or excluded_script_nowprocket_string in line \
23
- or excluded_inline_script_tag_with_no_attibutes in line :
24
+ or excluded_inline_script_tag_with_no_attibutes in line \
25
+ or excluded_bundle_script in line :
24
26
return False
25
27
return True
26
28
You can’t perform that action at this time.
0 commit comments