mirror of
https://github.com/godotengine/godot-docs.git
synced 2025-12-31 17:49:03 +03:00
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -uo pipefail
|
|
|
|
output=$(grep -r -P '^(?!\s*\.\.).*\S::$' --include='*.rst' --exclude='docs_writing_guidelines.rst' .)
|
|
if [[ -n $output ]]; then
|
|
echo 'The shorthand codeblock syntax (trailing `::`) is not allowed.'
|
|
echo "$output"
|
|
exit 1
|
|
fi
|