Tests: Check for wrong quotes in docs (#5355)
This commit is contained in:
parent
d1da1664f0
commit
f4acc59b82
|
|
@ -25,6 +25,9 @@ foreach my $file (sort keys %files) {
|
|||
checkPattern($filename, $contents,
|
||||
qr/.*[a-z](?<!:ref):\`[^`]+\n/,
|
||||
"tag:`...` should not be split between lines");
|
||||
checkPattern($filename, $contents,
|
||||
qr/.*[a-z](?<!:ref):\'/,
|
||||
"tag:`...' should use backticks instead");
|
||||
}
|
||||
|
||||
ok(1);
|
||||
|
|
|
|||
Loading…
Reference in New Issue