Fix numerous issues with integration documentation tags and the table of contents, and add a script to check for theses issues

This commit is contained in:
w0rp 2017-09-10 19:42:45 +01:00
parent c4ad92e458
commit 9d24cc4047
19 changed files with 296 additions and 190 deletions

View file

@ -255,6 +255,13 @@ if ((run_custom_checks)); then
grep ' \*[^*]\+\*$' doc/ -r \
| awk '{ sep = index($0, ":"); if (length(substr($0, sep + 1 )) < 79) { print } }' \
| grep . && EXIT=1
echo '========================================'
echo 'Look for table of contents issues'
echo '========================================'
echo
test/script/check-toc || EXIT=$?
fi
exit $EXIT