Just a quick note, if you’re ever looking to remove the automatically generated quotes from a <q>
(quote) tag, all you need to do is use a little CSS to unstyle it.
q:before,
q:after {
content: "";
}
IE doesn’t understand this, but it doesn’t automatically make the quotes anyway. For more information see this article.