- const attrSchemaRows = $helpers.getAttrsSchemaRows()

.auto-doc
  .mp-table
    .mp-table-titles.header-title
      .mp-table-title-cell= `Attributes for ${$attrs['component']}`
    .mp-table-titles
      .mp-table-title-cell Name
      .mp-table-title-cell Type
      .mp-table-title-cell Default
      .mp-table-title-cell.description Description
    each row in attrSchemaRows
      .mp-table-row
        .mp-table-cell.attr= row.attr
        .mp-table-cell.type= row.type
        .mp-table-cell.default= JSON.stringify(row.default)
        .mp-table-cell.description= row.description
