From now on all per-version notes link to the global list of Known Issues. If there is a new note it should be listed twice: In the per-version list, and in the global list. (cherry picked from commit c58dd2790a)
c58dd2790a
This shell script added hyperlinks to all unique statement names: UNIQSTATEMENTS=$(\ sort \ <(git grep '.. namedconf:statement::' '*.rst' | sed -e 's/^.*:: //') \ <(git grep '.. rndcconf:statement::' '*.rst' | sed -e 's/^.*:: //') \ | uniq --unique) ARMFILES=$(git ls-files 'doc/*.rst' | grep -v 'doc/man') for STATEMENT in $UNIQSTATEMENTS; \ do sed -i -e "s/\`\`$STATEMENT\`\`/:any:\`$STATEMENT\`/g" $ARMFILES; \ done This needs manual cleanup (see next commit) to fix syntax errors.