in my markdown files I have a summary at the top with inner links to the document headers. Something like this:
# my doc
## Summary
* [Introduction](#intro)
...
## <a name="intro"></a>Introduction
Lorem blahblahblah
I have customized the heading delimiters to appear with the same color of comments using the following statement:
hi def link markdownHeadingDelimiter Comment
I would like to customize the entire part represented by the inner anchor <a name="intro"></a>
.
How can I do that?