Search code examples
htmlescapingmeta-tags

meta description quotes escape


html code meta tag description,

it is generated dynamically and we have quotes in the description part and search engines didn't read everything.

it shows until the quotes begins in the search results

how to deal with it ?

thanks


Solution

  • You need to escape the quotes using HTML character references:

    <meta name="description" content="&quot;quoted content&quot;">
    

    The description here is "quoted content".