Skip to content

Commit

Permalink
fixed issue 114, AttributeError
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-cavalcanti committed Jun 21, 2022
1 parent ccf20e5 commit daf81c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkdocs_with_pdf/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def _render_js(self, soup):
body.append(script)
if len(self._mixed_script) > 0:
tag = soup.new_tag('script')
tag.text = self._mixed_script
tag.append(self._mixed_script)
body.append(tag)
for src in scripts:
body.append(soup.new_tag('script', src=f'file://{src}'))
Expand Down

0 comments on commit daf81c6

Please sign in to comment.