Hide keyboard shortcuts

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 * 

3 

4def thead( 

5 trContent=""): 

6 """ 

7 *Generate a table head - TBS style* 

8 

9 **Key Arguments** 

10 

11 - ``trContent`` -- the table row content 

12  

13 

14 **Return** 

15 

16 - ``thead`` -- the table head 

17  

18 """ 

19 thead = """<thead class="">%(trContent)s</thead>""" % locals() 

20 

21 return thead