I would like to use links in markdown that points to an element in a list or a table (or text) and not specially a header.
The only solution I found for markdown is to use HTML anchors :
This is a list of actions:
- <a id="action-one">action one</a>`: blablanla
- <a id="action-two">action two</a>`: patata
Later, in text, [action one](#action-one) is mandatory...
This works well in VScode (for example) but not in Gitlab.
FYI :
- Using
name
instead ofid
as explained here would not work for vscode. - In the official documentation, there's only mention of
header
anchors.
Any idea or solution is welcome. Thanks.