HTML Q Tag Provides an Easy Quote
The HTML Q tag automatically encloses the tagged text with quotes. Saves the trouble of escaping quotes or from having to use PHP htmlentities.
<!-- the q tag encloses quotes around the tagged text. -->
<q>text to quote</q>
Example:
<p>Corem <q>ipsum dolor sit amet</q>, consectetur adipiscing <q>elit</q>, sed do eiusmod tempor incididunt.</p>
Result:
Corem ipsum dolor sit amet
, consectetur adipiscing elit
, sed do eiusmod tempor incididunt.
Quoted sections are done using the HTML q tag.