Closed Anteru closed 4 years ago
The title says it all - typogrify mangles a title element like <title>A & B</title> into <title>A <span class="amp">&</span> B</title>, which unfortunately ends up being shown as "A &" by the browser.
<title>A & B</title>
<title>A <span class="amp">&</span> B</title>
The most expedient way to solve this is to filter at the template level, e.g., using the Jinja2 striptags filter.
striptags
The title says it all - typogrify mangles a title element like
<title>A & B</title>
into<title>A <span class="amp">&</span> B</title>
, which unfortunately ends up being shown as "A &" by the browser.