Skip to content

Commit f2f2361

Browse files
authored
fix: escaped non-unicode characters (0.1) (#112)
* fix: escaped non-unicode characters * chore: fix footer
1 parent e19d749 commit f2f2361

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pre_build.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ def build_footer():
161161
from datetime import datetime
162162
year = datetime.now().year
163163
footer_content = f"""
164-
<div>
165-
Copyright © 2020-{year}
166-
<a href="https://www.openmicroscopy.org/"><abbr title="Open Microscopy Environment">OME</abbr></a><sup>®</sup>.
167-
OME trademark rules apply.
168-
</div>
169-
"""
164+
<div>
165+
Copyright &copy; 2020-{year}
166+
<a href="https://www.openmicroscopy.org/"><abbr title="Open Microscopy Environment">OME</abbr></a><sup>&reg;</sup>.
167+
OME trademark rules apply.
168+
</div>
169+
"""
170170
with open('footer.md', 'w') as footer_file:
171171
footer_file.write(footer_content)
172172

0 commit comments

Comments
 (0)