Coverage for khufu/tables/tableCaption.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# encoding: utf-8
2from . import *
4def tableCaption(
5 content=""):
6 """
7 *Generate a table caption - TBS style*
9 **Key Arguments**
11 - ``content`` -- the content
14 **Return**
16 - ``tableCaption`` -- the table caption
18 """
19 tableCaption = """<caption class="">%(content)s</caption>""" % locals()
21 return tableCaption