markdown_table Function

pure function markdown_table(row_header, column_header, body_cells, side_borders) result(lines)

Arguments

Type IntentOptional Attributes Name
type(string_t), intent(in) :: row_header(first_body_row:)
type(string_t), intent(in) :: column_header(:)
type(string_t), intent(in) :: body_cells(first_body_row:,:)
logical, intent(in) :: side_borders

Return Value type(string_t), (size(body_cells,1)+rank(column_header)+num_rule_lines)


Calls

proc~~markdown_table~~CallsGraph proc~markdown_table markdown_table interface~bracket string_t%bracket proc~markdown_table->interface~bracket

Called by

proc~~markdown_table~~CalledByGraph proc~markdown_table markdown_table program~create_markdown_table create_markdown_table program~create_markdown_table->proc~markdown_table