Skip to content

Commit

Permalink
Add multiple paths
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasturcani committed Jun 26, 2023
1 parent 7ac896c commit 656ed60
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/moldoc/_internal/moldoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ def html_moldoc(self: HTML5Translator, node: MolDocNode) -> None:

if not getattr(self, "moldoc_scripts_added", False):
self.body.append(
'<script src="/_static/three.min.js"></script>'
'<script src="/_static/molDraw.js"></script>'
'<script src="three.min.js"></script>'
'<script src="molDraw.js"></script>'
'<script src="../three.min.js"></script>'
'<script src="../molDraw.js"></script>'
"<script>const md=molDraw;"
"let atoms=[];"
"let bonds=[];"
Expand Down

0 comments on commit 656ed60

Please sign in to comment.