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)
pragma solidity ^0.5.0; | |
contract SupplyChain { | |
/* set owner */ | |
address owner; | |
/* Add a variable called skuCount to track the most recent sku # */ | |
uint private skuCount; |
pragma solidity >=0.7.0 <0.9.0; | |
contract Base { | |
uint x; | |
constructor() public { | |
x = 10; | |
} | |