Tests: Check for wrong quotes in docs (#5355)

This commit is contained in:
Wilson Snyder 2024-08-09 17:18:59 -04:00
parent d1da1664f0
commit f4acc59b82
1 changed files with 3 additions and 0 deletions

View File

@ -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);