[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH for-2.9 6/6] qapi2texi: Fix translation of *strong*
From: |
Markus Armbruster |
Subject: |
[Qemu-devel] [PATCH for-2.9 6/6] qapi2texi: Fix translation of *strong* and _emphasized_ |
Date: |
Mon, 20 Mar 2017 14:11:55 +0100 |
Signed-off-by: Markus Armbruster <address@hidden>
---
scripts/qapi2texi.py | 4 ++--
tests/qapi-schema/doc-good.texi | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/scripts/qapi2texi.py b/scripts/qapi2texi.py
index 5c4db78..9e01500 100755
--- a/scripts/qapi2texi.py
+++ b/scripts/qapi2texi.py
@@ -35,12 +35,12 @@ EXAMPLE_FMT = """@example
def subst_strong(doc):
"""Replaces *foo* by @strong{foo}"""
- return re.sub(r'\*([^*\n]+)\*', r'@emph{\1}', doc)
+ return re.sub(r'\*([^*\n]+)\*', r'@strong{\1}', doc)
def subst_emph(doc):
"""Replaces _foo_ by @emph{foo}"""
- return re.sub(r'\b_([^_\n]+)_\b', r' @emph{\1} ', doc)
+ return re.sub(r'\b_([^_\n]+)_\b', r'@emph{\1}', doc)
def subst_vars(doc):
diff --git a/tests/qapi-schema/doc-good.texi b/tests/qapi-schema/doc-good.texi
index 1160aaf..c410626 100644
--- a/tests/qapi-schema/doc-good.texi
+++ b/tests/qapi-schema/doc-good.texi
@@ -2,7 +2,7 @@
@subsection Subsection
address@hidden @emph{with emphasis}
address@hidden @emph{with emphasis}
@code{var} @{in address@hidden
@itemize @bullet
@item
@@ -67,7 +67,7 @@ Example:
Examples:
@itemize @minus
@item
address@hidden
address@hidden
@item
@address@hidden
@end itemize
@@ -76,12 +76,12 @@ Examples:
@deftp {Enum} Enum
address@hidden Produces @emph{invalid} texinfo
address@hidden Produces @strong{invalid} texinfo
@b{Values:}
@table @asis
@item @code{one}
-The @emph{one} @{and address@hidden
+The @emph{one} @{and address@hidden
@item @code{two}
Not documented
@end table
--
2.7.4
- [Qemu-devel] [PATCH for-2.9 4/6] tests/qapi-schema: Make test-qapi.py print docs again, (continued)
- [Qemu-devel] [PATCH for-2.9 4/6] tests/qapi-schema: Make test-qapi.py print docs again, Markus Armbruster, 2017/03/20
- [Qemu-devel] [PATCH for-2.9 2/6] qapi2texi: Fix to actually fail when 'doc-required' is false, Markus Armbruster, 2017/03/20
- [Qemu-devel] [PATCH for-2.9 1/6] qapi: Drop excessive Make dependencies on qapi2texi.py, Markus Armbruster, 2017/03/20
- [Qemu-devel] [PATCH for-2.9 5/6] tests/qapi-schema: Systematic positive doc comment tests, Markus Armbruster, 2017/03/20
- [Qemu-devel] [PATCH for-2.9 6/6] qapi2texi: Fix translation of *strong* and _emphasized_,
Markus Armbruster <=
- Re: [Qemu-devel] [PATCH for-2.9 0/6] qapi: Small qapi2texi fixes and addition tests, no-reply, 2017/03/28