On Monday 20 Jun 2011 13:34:16 adamquadmon wrote: > Hi there, > I'm in trouble with http://validator.w3.org > > My doctype is: > $this->doctype ( 'HTML5' ); > > The validator say: > Bad value chapter for attribute rel on element link: Keyword chapter is not > registered. > <link rel="chapter" href="/myUrl" title="My Title"> > > the same for keys: sections, subsections etc. > > I found a list of valid html5 link tags here (sorry in italian but the list > is english): > http://www.html5today.it/tutorial/html5-seo-link-relations-ovvero-semantica > -collegamenti > > how can I override this issue? is an issue?
The component Zend_View_Helper_Navigation_Links (Zend/View/Helper/Navigation/Links.php) is responsible for rendering all the links. The links it provides are placed in this class: alternate, stylesheet, start, next, prev, contents, index, glossary, copyright, chapter, section, subsection, appendix, help and bookmark. If you override this class by your own version, defining your own relations and apply the correct methods, you can override this behaviour. Regards, Jurian -- Jurian Sluiman Soflomo - http://soflomo.com -- List: [email protected] Info: http://framework.zend.com/archives Unsubscribe: [email protected]
