-
-
Notifications
You must be signed in to change notification settings - Fork 308
/
checkmd
executable file
·75 lines (63 loc) · 1.77 KB
/
checkmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/perl -w
# Check the heading levels in the given markdown files
#
my @f = @ARGV;
my $ecount; # error counter
sub error {
my ($file, $line, $num, $txt)=@_;
print STDERR "$file:$num:1: error: $txt\n";
$ecount++;
}
sub check {
my ($f)=@_;
open(F, "<$f");
my $l = 1;
my $lvl = 0;
my $next_line_should_be_blank = 0;
while(<F>) {
my $line = $_;
chomp $line;
if($line =~ /\]\(([^)]*)/) {
my $target = $1;
if($target =~ /README.md$/) {
error($f, $line, $l, "Link to README.md: $target");
}
}
if($next_line_should_be_blank) {
if(! ($line =~ m/^[\s]*$/)) {
error($f, $line, $l, "The line after a '#' header should be blank.");
}
$next_line_should_be_blank = 0;
}
if($line =~ /^(\#+) /) {
$next_line_should_be_blank = 1;
# check the new used level
my $nlvl = length($1);
if($l==1) {
if($nlvl != 1) {
error($f, $line, $l, "Not a toplevel heading");
}
}
else {
# accept level 1, same level, one level higher or (back to) a
# lower level
if(($nlvl != 1) &&
($nlvl != $lvl) &&
($nlvl != $lvl +1) &&
($nlvl > $lvl)) {
error($f, $line, $l, "Heading level mismatch (old: $lvl, new: $nlvl");
}
}
$lvl = $nlvl;
}
$l++;
if(($l > 1) && !$lvl) {
error($f, $line, 1, "Missing first toplevel heading");
}
}
close(F);
}
for my $e (@f) {
check($e);
}
exit 1 if($ecount);