    Table_start: Internal tags for HTML tables
    
    Column: Internal tags (labels)
    
    Label table_start:
    
    
    
    
    
    Label column:
    
    
    
    
    
    
    
    
    
    Label align:
    
    
    Label table_end:
    
    Column: Description
    
    Label table_start: is a tag to start the table (HTML = &lt; table &gt;) followed by the data grouped by columns.
    Table-name (optional, table_start: table-name)
    Table-name is an additional parameter (HTML = &lt; caption &gt;)
    The name of the table is optional, it must be written together with table_start: (table_start: table-name),
    but with an intermediate mandatory space.
    
    Label column: is a tag to start the data group in the column.
    The sequence of columns is the same as the sequence of parameters column:.
    In the HTML table, the data will be displayed in rows, but in the source file they are grouped by columns for
    easier writing.
    
    Column-name (optional, column: column-name)
    Column-name is an additional parameter (HTML = &lt; th &gt;)
    The name of the column is optional, it must be written together with column: (column: column-name),
    but with an intermediate mandatory space.
    
    Label align: is a tag that defines the alignment of data for the entire column.
    Possible values are: left, right, center
    
    Label table_end: is a tag to end the table (HTML = &lt; /table &gt;)
    ATTENTION, do not include HTML elements or related attributes in the draft document, and especially not in the table!
    
    Table_end:
