2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Fix broken markup in doc/arm/dlz.inc.rst

Commit a6cce753e2 erroneously used
Markdown syntax in doc/arm/dlz.inc.rst.  Replace it with proper
reStructuredText so that the relevant section of the ARM is rendered
correctly.
This commit is contained in:
Michał Kępień
2025-07-16 07:06:09 +02:00
committed by Štěpán Balážik
parent a951ab1872
commit 7f8a88043f

View File

@@ -87,8 +87,7 @@ backend storage of redirection rules:
Sample DLZ Module Sample DLZ Module
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
For guidance in the implementation of DLZ modules, the ``example`` For guidance in the implementation of DLZ modules, the |example directory|_
directory in the [gitlab.isc.org/isc-projects/dlz-modules](https://gitlab.isc.org/isc-projects/dlz-modules/-/tree/main/example?ref_type=heads)
contains a basic dynamically linkable DLZ module - i.e., one which can be loaded contains a basic dynamically linkable DLZ module - i.e., one which can be loaded
at runtime by the "dlopen" DLZ driver. The example sets up a single zone, whose at runtime by the "dlopen" DLZ driver. The example sets up a single zone, whose
name is passed to the module as an argument in the :any:`dlz` statement: name is passed to the module as an argument in the :any:`dlz` statement:
@@ -124,9 +123,16 @@ responses in some other fashion, e.g., by providing different address
records for a particular name depending on the network from which the records for a particular name depending on the network from which the
query arrived. query arrived.
Documentation of the DLZ module API can be found in Documentation of the DLZ module API can be found in |README|_. This
[README](https://gitlab.isc.org/isc-projects/dlz-modules/-/raw/main/example/README). This repository also contains |dlz_minimal.h|_,
repository also contains the header file
[dlz_minimal.h](https://gitlab.isc.org/isc-projects/dlz-modules/-/raw/main/modules/include/dlz_minimal.h),
which defines the API and should be included by any dynamically linkable DLZ which defines the API and should be included by any dynamically linkable DLZ
module. module.
.. |example directory| replace:: ``example`` directory in the DLZ repository
.. _example directory: https://gitlab.isc.org/isc-projects/dlz-modules/-/tree/main/example
.. |README| replace:: the ``README`` file
.. _README: https://gitlab.isc.org/isc-projects/dlz-modules/-/raw/main/example/README
.. |dlz_minimal.h| replace:: the header file ``dlz_minimal.h``
.. _dlz_minimal.h: https://gitlab.isc.org/isc-projects/dlz-modules/-/raw/main/modules/include/dlz_minimal.h