(children)
| 10 | import {useRouter} from './Router'; |
| 11 | |
| 12 | function anchorId(children) { |
| 13 | return children |
| 14 | .replace(/\s/g, '-') |
| 15 | .replace(/[^a-zA-Z0-9-_]/g, '') |
| 16 | .toLowerCase(); |
| 17 | } |
| 18 | |
| 19 | let tocLinkTextStyle = style({ |
| 20 | overflowWrap: 'break-word', |
no outgoing calls
no test coverage detected