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 tableCaption( 

5 content=""): 

6 """ 

7 *Generate a table caption - TBS style* 

8 

9 **Key Arguments** 

10 

11 - ``content`` -- the content 

12  

13 

14 **Return** 

15 

16 - ``tableCaption`` -- the table caption 

17  

18 """ 

19 tableCaption = """<caption class="">%(content)s</caption>""" % locals() 

20 

21 return tableCaption