diff options
| author | John Snow <jsnow@redhat.com> | 2025-03-13 00:43:10 -0400 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2025-03-14 07:32:41 +0100 |
| commit | 602c90beaedd9abbbf1535c8630293267e6b29c0 (patch) | |
| tree | 933c10bfd5c740e483f978f032236a8405789465 /docs/conf.py | |
| parent | 25d44f57e17b088fdc4e38042e04c4e9da2c1088 (diff) | |
| download | focaccia-qemu-602c90beaedd9abbbf1535c8630293267e6b29c0.tar.gz focaccia-qemu-602c90beaedd9abbbf1535c8630293267e6b29c0.zip | |
docs: add QAPI namespace "QMP" to qemu-qmp-ref
This also creates the qapi-qmp-index.html index and cross-reference target. Signed-off-by: John Snow <jsnow@redhat.com> Message-ID: <20250313044312.189276-10-jsnow@redhat.com> Acked-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 175491148c..9a86e84a80 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -163,7 +163,9 @@ qapi_allowed_fields = { # Due to a limitation in Sphinx, we need to know which indices to # generate in advance. Adding a namespace here allows that generation. -qapi_namespaces = set() +qapi_namespaces = { + "QMP", +} # -- Options for HTML output ---------------------------------------------- |