HansSchouten / PHPageBuilder

A drag and drop page builder to manage pages in any PHP project
https://www.phpagebuilder.com
MIT License
739 stars 180 forks source link

How to show a menu: ul > li > a > text #119

Open khristoff opened 2 years ago

khristoff commented 2 years ago

I have a basic unsorted list html as menu with this structure in a view.html file:

<ul> <li><a href="/page1">Text 1</a></li> <li><a href="/page2">Text 2</a></li> <li><a href="/page3">Text 3</a></li> </ul>

but when I render the page the tag "a" is removed and I'm getting something like this:

<li>Text1</li>

how can generate the li elements with the link? thanks!