Question

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

Was it helpful?

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".

OTHER TIPS

In PHP use strip_tages + str_replace('"',"&quot") to archiv

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top