Skip to content

Commit 1d237e9

Browse files
committed
Fix malformatted html.
1 parent 4201fab commit 1d237e9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/py/kaleido/_page_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class PageGenerator:
3535
footer = f"""
3636
<script src="{KJS_PATH.as_uri()}"></script>
3737
</head>
38-
<body style="{{margin: 0; padding: 0;}}"><img id="kaleido-image"><img></body>
38+
<body style="{{margin: 0; padding: 0;}}"><img id="kaleido-image"></img></body>
3939
</html>
4040
"""
4141
"""The footer is the HTML that always goes on the bottom. Rarely needs changing."""

src/py/kaleido/vendor/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
<script src="https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/tex-svg.js"></script>
1313
<script src="./kaleido_scopes.js"></script>
1414
</head>
15-
<body style="{margin: 0; padding: 0;}"><img id="kaleido-image"><img></body>
15+
<body style="{margin: 0; padding: 0;}"><img id="kaleido-image"></img></body>
1616
</html>

0 commit comments

Comments
 (0)