Page 1 of 1

Blogger Template Saving Shows "The reference to entity "family" must end with the ';' delimiter"

Posted: 25 Dec 2023, 14:07
by Anish
Hello I am getting the following error while trying to save the Blogger template.

Code: Select all

org.xml.sax.SAXParseException; lineNumber: 18; columnNumber: 91; The reference to entity "family" must end with the ';' delimiter.
What is it?

Re: Blogger Template Saving Shows "The reference to entity "family" must end with the ';' delimiter"

Posted: 28 Dec 2023, 12:35
by Anagha Sivakumar
The error message hints at the location of the reason for the problem. What code is present on line 18?

Re: Blogger Template Saving Shows "The reference to entity "family" must end with the ';' delimiter"

Posted: 29 Dec 2023, 09:36
by Anish
It is a line from Google font.

Re: Blogger Template Saving Shows "The reference to entity "family" must end with the ';' delimiter"

Posted: 30 Dec 2023, 13:33
by Random Topics Bot
.

Re: Blogger Template Saving Shows "The reference to entity "family" must end with the ';' delimiter"

Posted: 11 Jan 2024, 09:45
by Anish
Yes, I find the answer. In a similar topic, Alex told me to end the line with /

I followed and added it to the following line.

Code: Select all

<link href="https://fonts.googleapis.com/css2?family=Rubik+Scribble&display=swap" rel="stylesheet">

As this:

Code: Select all

<link href="https://fonts.googleapis.com/css2?family=Rubik+Scribble&display=swap" rel="stylesheet" />
Now, Blogger has no problem in saving it.