seb-vial / grav-plugin-about-me

Simple plugin to show some information about yourself, with a nice picture, your name, your title/job and a description
MIT License
9 stars 7 forks source link

Replace outer p-tag for description with div #12

Closed metbril closed 5 years ago

metbril commented 5 years ago

The twig template generates a paragraph of text from the description in the configuration that is automatically surrounded by a <p> tag. The template also had the <p class=p-note> tag. This does not render valid HTML, since nested p-tags are not allowed. This is resolved by replacing the outer tag by a div tag.

Because of this, the MF2 parser at https://indiewebify.me/validate-h-card/ does not recognize the note. Replacing by a div-tag fixes this.

metbril commented 5 years ago

As a personal workaround I have copied the twig template to my theme and modified it there, but that is not a sustainable solution.

seb-vial commented 5 years ago

Hello,

Thank you for your input. Merging it ;)