bind9/doc
Petr Špaček d101490250
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 15:50:50 +02:00
..
arm Add hyperlinks to all unique statement names 2022-07-04 15:50:50 +02:00
design Remove obsolete notes on name compression 2022-06-01 13:00:40 +01:00
dev Enforce Python codestyle with black 2022-06-08 10:27:46 +02:00
dnssec-guide Add hyperlinks to all unique statement names 2022-07-04 15:50:50 +02:00
doxygen Update the copyright information in all files in the repository 2022-01-11 09:05:02 +01:00
man Add note that named.conf man page is not a complete manual 2022-07-01 08:59:24 +02:00
misc Sort grammar map keys while pretty printing them 2022-07-01 08:59:23 +02:00
notes Add hyperlinks to all unique statement names 2022-07-04 15:50:50 +02:00
Makefile.am Install man pages when sphinx-build tool is missing 2021-05-25 11:21:32 +02:00