Reputation: 125
I want to create a Table of Content in which I want to add links to navigate to different sections in the same readme page.
I am using this
[Title of that Section](#id)
but the prolem is that the id has spaces in between, used %20 to connect but not working in readme.md
## Table of Content
* [Deployment](#deployment)
* [Tools and Technologies Used](#Tools%20and%20Technologies%20Used)
* [Usage](#usage)
* [Installation](#installation)
* [Contribution](#contribution)
* [License](#license)
What should I do to fix this.
Upvotes: 0
Views: 1453
Reputation: 22490
Replace the %20
with -
and do only use lowercase characters (it also works with uppercase, but lowercase should be preferred).
The link has to look like this:
[Tools and Technologies Used](#tools-and-technologies-used)
and will then match the title
### Tools and Technologies Used
Upvotes: 2