Page 1 of 1

Lost greater than sign in in istruction body

Posted: Mon Apr 08, 2019 12:35 pm
by multiplone1
hi, building a page and adding a GOOGLE script the program makes an error, losing the greater than sign, this only from the last version and consequently adds it to the end of the script, generating an error

<body
<!-- Markup JSON-LD generato da Assistente per il markup dei dati strutturati di Google. -->
<script type="application/ld+json"> { "@context" : "https://schema.org", "@type" : "LocalBusiness", "name" : "Sotto Sopra", "image" : "https://www.sottosopratorino.it/images/ ... 1_2017.png",
"telephone" : "011 8126623",
"email" : "info@sottosopratorino.it",
"address" : { "@type" : "PostalAddress", "streetAddress" : "Via Mazzini 54/I", "addressLocality" : "Torino" },
"url" : "https://www.sottosopratorino.it/" }>
</script>>

Re: Lost greater than sign in in istruction body

Posted: Mon Apr 08, 2019 12:43 pm
by multiplone1
Even adding any statement the major sign is added to the end of this new instruction
<body <script></script>>

Re: Lost greater than sign in in istruction body

Posted: Mon Apr 08, 2019 12:52 pm
by Pablo
The location of the inserted code is not correct,
You cannot insert scripts inside the body tags. This section is for attributes only (see the help).

The script should be added between the head tags.