Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML 5 google publisher link validation error

HTML 5 google publisher link validation error:

    Error: Bad value publisher for attribute rel on element link: Not an absolute IRI. The string publisher is not a registered keyword or absolute URL.

From line 13, column 1; to line 13, column 75

</script>↩<link href="https://plus.google.com/my publisher id" rel="publisher"> ↩</he

Syntax of absolute IRI:
    An absolute URL. For example: http://example.org/hello, but not /hello. Spaces should be escaped as %20. 
like image 862
AlexB Avatar asked Dec 04 '12 19:12

AlexB


1 Answers

Have you try this:

<link rel="author" href="https://plus.google.com/PUBLISERID?rel=publisher">

Passed HTML5 validation.

like image 105
AlbertoFdzM Avatar answered Oct 07 '22 16:10

AlbertoFdzM