def create_options_table()

in rst/options_node.py [0:0]


def create_options_table(content):
    tbl = nodes.table()
    tgroup = nodes.tgroup(cols=4)
    tbl += tgroup

    tgroup += nodes.colspec(colwidth=35)
    tgroup += nodes.colspec(colwidth=9)
    tgroup += nodes.colspec(colwidth=73)
    tgroup += nodes.colspec(colwidth=9)

    thead = nodes.thead()
    tgroup += thead
    row = nodes.row()
    thead += row
    row += create_row_entry_text('Name')
    row += create_row_entry_text('Type')
    row += create_row_entry_text('Short description')
    row += create_row_entry_text('Default')

    tbody = nodes.tbody()
    tgroup += tbody
    content.append(tbl)
    return tbody