Hello!
I am setting up a HTML table based on YML structure fields. Some passages of the table entries are publication and exhibition titles. These passages have to be italic, for instance:
Selected. Gerrit Rietveld Academie Awards, Looiersgracht60, Amsterdam
Usually, I would code it like that:
<td><i>Selected. Gerrit Rietveld Academie Awards</i>, Looiersgracht60, Amsterdam</td>
Markdown gives:
<td><p><em>Selected. Gerrit Rietveld Academie Awards</em>, Looiersgracht60, Amsterdam</p></td>
In this typographic case, I think the <i>
tag is better than the <em>
tag.
- How can I eliminate the
<p>
tag inside the<td>
tag? I do not need it here. - How can I use the
<i>
tag instead of the<em>
tag here?
Looking forward to your advice
Kirby is great!