(link)
| 15 | const hiddenManualNames = manualGroups.__hidden__.map(extractFileNameFromPath); |
| 16 | |
| 17 | function isLinkToHiddenManual(link) { |
| 18 | const linkTargetName = extractFileNameFromPath(link); |
| 19 | return hiddenManualNames.includes(linkTargetName); |
| 20 | } |
| 21 | |
| 22 | module.exports = function transform($, filePath) { |
| 23 | // The three <span>s are used to draw the menu button icon |
no test coverage detected