Hi,
I would like to create a table of contents at the beginning of a markdown document that links to headings further down in the same document. I have it working for one word headings, but not multiple word headings:
# My Doc
- [Planning](#planning)
- [Meeting Notes](#meeting-notes)
## Planning
Some planning notes
## Meeting Notes
Some meeting notes
Clicking on the Planning link jumps to the Planning heading, but I don’t have the Meeting Notes link working. Do I have something wrong with my syntax?