export function render(repository, commits) { const $commits = commits.map(commit => { return `
  • ${commit.message.replace(/\n/g, '
    ')}

    ${commit.committer.name}
  • `; }); return `

    ${repository.description}

    ${repository.full_name}

    `; }