I have a list in my rst file that looks like this:
- Item 1
- Item 2
- Item 3
It renders something like the following (which is exactly what I want):
- Item 1
- Item 2
- Item 3
I would like to create links for each item, so I did
.. _item-1:
- Item 1
.. _item-1:
- Item 2
.. _item-1:
- Item 3
Now my list renders something like this:
- Item 1
- Item 2
- Item 3
This is clearly happening because of the anchors I inserted between the elements. Is there a way to insert referenc-able anchors inline in sphinx/rST?