This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Parses *.md files in the current directory for broken links. | |
* - [Link](#broken-anchor) without <a name="broken-anchor"></a> within the same file | |
* - [Link](another-file#broken-anchor) without <a name="broken-anchor"></a> in the another-file.md | |
*/ | |
$ok = $fail = 0; |