Skip to content

Commit

Permalink
Merge pull request #33 from aproeme/master
Browse files Browse the repository at this point in the history
Fix: respect optional url_parameters, e.g. start time, when rendering…
  • Loading branch information
dham authored Jun 13, 2022
2 parents 24922db + 9375171 commit 98ef9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinxcontrib/youtube/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def visit_video_node(self, node, platform_url, platform_url_privacy=None):
"border": "0",
}
attrs = {
"src": "{}{}".format(platform_url,node['id']),
"src": "{}{}{}".format(platform_url,node['id'],url_parameters),
"style": css(style),
}
if node["align"] != None: div_style["text-align"] = node["align"]
Expand Down

0 comments on commit 98ef9f0

Please # to comment.