matt-j-m / grav-plugin-aura-authors

The Aura Authors Plugin for Grav CMS enables you to store author bios in a centrally managed repository and have them displayed across various pages of your site.
MIT License
6 stars 3 forks source link

Adding Author image results in "<" and ">" being rendered as "&lt;" and "&gt;" #9

Open ingosiegert opened 10 months ago

ingosiegert commented 10 months ago

I installed the aura authors plugin as described and also added an Author Image, naming scheme: "Firstname Lastname.png"

But instead of seeing the image, I just see the following text:

<img alt="Firstname Lastname" class="author-image" src="/user/images/Firstname Lastname.png" />

By inspecting with the HTML-code, I realized, that the "<" and ">" are misrendered:

&lt;img alt=&quot;Firstname Lastname&quot; class=&quot;author-image&quot; src=&quot;/user/images/Firstname Lastname.png&quot; /&gt;

Where's my mistake?