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 | |
| ### BEGIN INIT INFO | |
| # Provides: <service name> | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: <service description> | |
| ### END INIT INFO |
| function SaferHTML(templateData) { | |
| var s = templateData[0]; | |
| for (var i = 1; i < arguments.length; i++) { | |
| var arg = String(arguments[i]); | |
| // Escape special characters in the substitution. | |
| s += arg.replace(/&/g, "&") | |
| .replace(/</g, "<") | |
| .replace(/>/g, ">"); |