html error in help
Created by: galettesaucisse
AFAIK "a" tags inside "a" tags are illegal in html4/5, but we have it in help, and it messes up css styling
This appears to be generated in view/js/mod_help.js , where the ul tag is appended inside the a tag instead of after the closing /a
example: /help/en/about/about
<a class="nav-link" href="/help/about/about">About
<ul class="toc-content list-unstyled" id="doco-side-toc">
<li><a href="/help/en/about/about#doco-top-toc-heading">Contents</a></li>
<li><a href="/help/en/about/about#What_is_Hubzilla_">What is Hubzilla?</a></li>
<li><a href="/help/en/about/about#Right_so_what_is_Hubzilla_">Right... so what is Hubzilla?</a></li>
<li><a href="/help/en/about/about#Software_Stack">Software Stack</a></li>
<li><a href="/help/en/about/about#Glossary">Glossary</a></li>
<li><a href="/help/en/about/about#Features">Features</a></li>
</ul>
</a>