예제 #1
0
파일: html.py 프로젝트: dfirst/httpolice
def _cite_to_html(cite, _):
    with H.cite(__inline=True):
        H.a(cite.title, href=cite.url, target=u'_blank', __inline=True)
예제 #2
0
파일: html.py 프로젝트: vfaronov/httpolice
def _cite_to_html(cite, _):
    with H.cite():
        H.a(cite.title, href=cite.url)
예제 #3
0
파일: html.py 프로젝트: weijl6819/httpolice
def _cite_to_html(cite, _):
    with H.cite():
        H.a(cite.title, href=cite.url)
예제 #4
0
파일: html.py 프로젝트: garmann/httpolice
def _cite_to_html(cite, _):
    with H.cite():
        H.a(cite.title, href=cite.url, target=u'_blank')
예제 #5
0
def _cite_to_html(cite, _):
    with H.cite():
        H.a(cite.title, href=cite.url, target=u'_blank')