function renderRow()

in tools/rfc-render/render-rfc-table.js [30:37]


function renderRow(row) {
  return [
    `[${row.number}](https://github.com/aws/aws-cdk-rfcs/issues/${row.number})`,
    `[${row.title.trim()}](${row.link})`,
    renderUser(row.assignee),
    STATUS_LIST[row.status],
  ].join('|');
}