To create an anchor to a heading in github flavored markdown.
Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading) so your link should look like so:
[create an anchor](#anchors-in-markdown)
| #!/bin/bash | |
| # Update all git directories below specified directories | |
| # Skips directories that contain a file called .ignore | |
| # See https://stackoverflow.com/a/61207488/553865 | |
| HIGHLIGHT="\e[01;34m" | |
| NORMAL='\e[00m' | |
| export PATH=${PATH/':./:'/:} |