<page alpinejs>
Results in:
{ alpinejs: undefined }
It should result in:
{ alpinejs: true }
We’re not detecting if the end of the attribute string was reached on a boolean attribute. We should be and setting the value to true when it is.
```html
<page alpinejs>
```
Results in:
```js
{ alpinejs: undefined }
```
It should result in:
```js
{ alpinejs: true }
```
We’re not detecting if the end of the attribute string was reached on a boolean attribute. We should be and setting the value to true when it is.