Hello all,
I am pretty new to PureScript and am building a toy website in Halogen with UI elements borrowed from Bootstrap 5. In Bootstrap 5 there is lots of HTML code that uses uncommon properties. Here’s an example:
<a class="nav-link active" aria-current="page" href="#">Dashboard</a>
I read the Halogen guide about adding a missing property but the trouble is HTMLa simply doesn’t support properties like aria-current. Is there any way to get around this?