Petr Špaček
dba86ce710
Add hyperlinks to all unique statement names
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.
2022-07-04 16:08:59 +02:00
..
2022-07-04 16:08:59 +02:00
2022-03-10 14:53:21 +00:00
2022-06-08 13:18:27 +02:00
2022-07-04 16:08:59 +02:00
2022-01-11 09:05:02 +01:00
2022-07-01 10:21:06 +02:00
2022-07-01 10:21:05 +02:00
2022-07-04 16:08:59 +02:00
2021-05-25 11:21:32 +02:00