summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPeter Maydell2017-02-20 18:42:47 +0100
committerPeter Maydell2017-02-20 18:42:47 +0100
commit56f9e46b841c7be478ca038d8d4085d776ab4b0d (patch)
tree9236b179a00b5b5ece25b328dfcb34299619264a /scripts
parentMerge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20170220-1' into st... (diff)
parentMakefile: Put VERSION info into version.texi rather than using -D (diff)
downloadqemu-56f9e46b841c7be478ca038d8d4085d776ab4b0d.tar.gz
qemu-56f9e46b841c7be478ca038d8d4085d776ab4b0d.tar.xz
qemu-56f9e46b841c7be478ca038d8d4085d776ab4b0d.zip
Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2017-02-20' into staging
QAPI patches for 2017-02-20 # gpg: Signature made Mon 20 Feb 2017 13:31:12 GMT # gpg: using RSA key 0x3870B400EB918653 # gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" # gpg: aka "Markus Armbruster <armbru@pond.sub.org>" # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * remotes/armbru/tags/pull-qapi-2017-02-20: Makefile: Put VERSION info into version.texi rather than using -D qapi2texi: replace quotation by bold section name Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/qapi2texi.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/qapi2texi.py b/scripts/qapi2texi.py
index 83ded95c2d..c1071c62c6 100755
--- a/scripts/qapi2texi.py
+++ b/scripts/qapi2texi.py
@@ -159,12 +159,10 @@ def texi_body(doc):
func = texi_example
if name:
- # FIXME the indentation produced by @quotation in .txt and
- # .html output is confusing
- body += "\n@quotation %s\n%s\n@end quotation" % \
- (name, func(doc))
- else:
- body += func(doc)
+ # prefer @b over @strong, so txt doesn't translate it to *Foo:*
+ body += "\n\n@b{%s:}\n" % name
+
+ body += func(doc)
return body