Example #1
0
def _cite_elem_to_html(elem, ctx):
    _piece_to_html(elem.info, ctx)
    quote = elem.content
    if quote:
        text_node(u': ')
        with H.q():
            _piece_to_html(quote, ctx)
Example #2
0
def _cite_elem_to_html(elem, ctx):
    _piece_to_html(elem.info, ctx)
    quote = elem.content
    if quote:
        H.span(u': ', __inline=True)
        with H.q(__inline=True):
            _piece_to_html(quote, ctx)
Example #3
0
def _cite_elem_to_html(elem, ctx):
    _piece_to_html(elem.info, ctx)
    quote = elem.content
    if quote:
        text_node(u': ')
        with H.q():
            _piece_to_html(quote, ctx)