Coverage for khufu/tables/thead.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 thead(
5 trContent=""):
6 """
7 *Generate a table head - TBS style*
9 **Key Arguments**
11 - ``trContent`` -- the table row content
14 **Return**
16 - ``thead`` -- the table head
18 """
19 thead = """<thead class="">%(trContent)s</thead>""" % locals()
21 return thead