diff options
author | Markus Armbruster <armbru@redhat.com> | 2025-04-04 14:14:06 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2025-04-08 09:04:34 +0200 |
commit | 0d4c7ea0f8b8655f55cb33f6a75243a2dcb64447 (patch) | |
tree | 649f1d41f90ca4a7f3403152999108e744cc04e8 | |
parent | ae75c37e50f37b224bef4c6191da6a577afedf1e (diff) | |
download | qemu-0d4c7ea0f8b8655f55cb33f6a75243a2dcb64447.zip qemu-0d4c7ea0f8b8655f55cb33f6a75243a2dcb64447.tar.gz qemu-0d4c7ea0f8b8655f55cb33f6a75243a2dcb64447.tar.bz2 |
docs/interop: Sanitize QMP reference manuals TOC
The "QEMU QMP Reference Manual" and the "QEMU Storage Daemon QMP
Reference Manual" start with a table of contents that looks like this:
Contents
* Title of the manual
* Title of first first-level section
* Title of its first second-level section
* Title of its second second-level section
...
* Title of second first-level section
...
The first level is useless. Drop it.
While there, delete the option that limits the TOC to depth 3. Its
actual depth was 3 before the patch, and is now 2.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20250404121413.1743790-5-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
-rw-r--r-- | docs/interop/qemu-qmp-ref.rst | 2 | ||||
-rw-r--r-- | docs/interop/qemu-storage-daemon-qmp-ref.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/interop/qemu-qmp-ref.rst b/docs/interop/qemu-qmp-ref.rst index ef8792b..3bc1ca1 100644 --- a/docs/interop/qemu-qmp-ref.rst +++ b/docs/interop/qemu-qmp-ref.rst @@ -4,7 +4,7 @@ QEMU QMP Reference Manual ========================= .. contents:: - :depth: 3 + :local: .. qapi-doc:: qapi/qapi-schema.json :transmogrify: diff --git a/docs/interop/qemu-storage-daemon-qmp-ref.rst b/docs/interop/qemu-storage-daemon-qmp-ref.rst index d0228d6..dc7bde2 100644 --- a/docs/interop/qemu-storage-daemon-qmp-ref.rst +++ b/docs/interop/qemu-storage-daemon-qmp-ref.rst @@ -2,7 +2,7 @@ QEMU Storage Daemon QMP Reference Manual ======================================== .. contents:: - :depth: 3 + :local: .. qapi-doc:: storage-daemon/qapi/qapi-schema.json :transmogrify: |