How do I do this in HAML when i have HTML 5 Data attributes without value
<p class="title" data-section-title><a href="#mypanel">Panel</a></p>
I have done this, but HAML raises an error
%p{ class: "title", data: { section: {:title}}}= link_to "Panel", "#mypanel"
Thanks