adding links to readme.md code example
Example 1: how to create link in readme.md
[a link] (https://github.com/user/repo/blob/branch/other_file.md)
Example 2: adding link to heading readme.md
LinkHeadingToContent(headingText) {
headingList = headingText.split('\n');
headingList.map((heading, index) => {
const firstDigitIndex = heading.search(/\d/);
const anchorText = heading
.toLowerCase()
.replace(/[^a-z\d\s]/g, '')
.trim()
.replace(/ /g, '-');
headingList[index] =
[heading.slice(0, firstDigitIndex), '[', heading.slice(firstDigitIndex)].join('') +
'](#' +
anchorText +
')';
});
return headingList.join('\n');
}