Resolve issues with unicode characters in author's name

I've been unable to reproduce the issue on macOS with Python 2.7/3.6 and Fedora with Python 2.7, but if it happens for others, then it's worth the change.
This commit is contained in:
Jonathan Rehm 2017-07-13 21:22:34 -07:00
parent 51bd2f89df
commit 91ba0f0362

View File

@ -5,7 +5,7 @@
{% if author is not none %}
<section class="author-bio">
{%if author.image_url is not none %}
<img src="{{author.image_url}}" alt="{{author.name}}" class="author-photo pull-left">
<img src="{{author.image_url}}" alt="{{author.name|safe}}" class="author-photo pull-left">
{% endif %}
{%if author.about is not none %}