Closed notflip closed 5 years ago
https://docs.spatie.be/menu/v2/basic-usage/adding-items/#submenus
As you can see the submenu item's are being returned in a separate li
<!-- Wrong: https://docs.spatie.be/menu/v2/basic-usage/adding-items/#submenus --> <ul> <li> <a>item one</a> </li> <li> <ul> <li> <a>item nested</a> </li> </ul> </li> </ul>
While the semantic correct version would be.
<!-- Correct --> <ul> <li> <a>item one</a> <ul> <li> <a>item nested</a> </li> </ul> </li> </ul>
Could you PR a fix for this? You can create an PR by clicking the edit button on top of the page 👍
edit
https://docs.spatie.be/menu/v2/basic-usage/adding-items/#submenus
As you can see the submenu item's are being returned in a separate li
While the semantic correct version would be.