Super simple question here, yet I can't seem to find a definitive answer.
I'm currently working a page where a list of links will lead to different areas of the page. I know how to do this is regular HTML (with the "name" field) but I'm not sure how to do it in HAML. I only started working with it a short time ago. I tried doing it like this, which isn't working.
.li
= link_to 'Information', '#info'
The section I'm trying to link down to:
.h2 INFORMATION { name: 'info' }
There's a weird scarcity of info regarding how to solve this? If anyone could point me in the right direction, I'd really appreciate it.