[ovs-dev] [PATCH 2/3] nroff: Add support for <b>...</b> and <i>...</i> inline markup.

Justin Pettit jpettit at nicira.com
Mon Sep 21 23:07:28 UTC 2015


Acked-by: Justin Pettit <jpettit at nicira.com>

--Justin


> On Sep 17, 2015, at 10:11 AM, Ben Pfaff <blp at nicira.com> wrote:
> 
> Signed-off-by: Ben Pfaff <blp at nicira.com>
> ---
> python/build/nroff.py | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/python/build/nroff.py b/python/build/nroff.py
> index 04fc3e8..8b16db5 100644
> --- a/python/build/nroff.py
> +++ b/python/build/nroff.py
> @@ -66,7 +66,7 @@ def inline_xml_to_nroff(node, font, to_upper=False, newline='\n'):
>             s = text_to_nroff(node.data, font)
>         return s.replace('\n', newline)
>     elif node.nodeType == node.ELEMENT_NODE:
> -        if node.tagName in ['code', 'em', 'option', 'env']:
> +        if node.tagName in ['code', 'em', 'option', 'env', 'b']:
>             s = r'\fB'
>             for child in node.childNodes:
>                 s += inline_xml_to_nroff(child, r'\fB', to_upper, newline)
> @@ -86,7 +86,7 @@ def inline_xml_to_nroff(node, font, to_upper=False, newline='\n'):
>             else:
>                 raise error.Error("'ref' lacks required attributes: %s" % node.attributes.keys())
>             return s + font
> -        elif node.tagName == 'var' or node.tagName == 'dfn':
> +        elif node.tagName in ['var', 'dfn', 'i']:
>             s = r'\fI'
>             for child in node.childNodes:
>                 s += inline_xml_to_nroff(child, r'\fI', to_upper, newline)
> -- 
> 2.1.3
> 
> _______________________________________________
> dev mailing list
> dev at openvswitch.org
> http://openvswitch.org/mailman/listinfo/dev




More information about the dev mailing list