views:

572

answers:

1

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

+3  A: 

You need to escape the quotes using HTML character references:

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

The description here is "quoted content".

Gumbo