diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2017-02-20 17:42:47 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2017-02-20 17:42:47 +0000 |
| commit | 56f9e46b841c7be478ca038d8d4085d776ab4b0d (patch) | |
| tree | 9236b179a00b5b5ece25b328dfcb34299619264a /scripts/qapi2texi.py | |
| parent | c8f21dbfc3dea943ca5edac2f00058477ecb5b6b (diff) | |
| parent | fea346f569d4132296f7c26367374fcace80e096 (diff) | |
| download | focaccia-qemu-56f9e46b841c7be478ca038d8d4085d776ab4b0d.tar.gz focaccia-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/qapi2texi.py')
| -rwxr-xr-x | scripts/qapi2texi.py | 10 |
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 |