\n'
+ for (let item of data) {
+ const size = data.filter(i => i.countryName === item.countryName).length
+ let root = output.indexOf(item.countryName) === -1
+ const rowspan = root && size > 1 ? ` rowspan="${size}"` : ''
+ const name = item.countryName
+ const cell1 = root
+ ? `${item.countryFlag} ${name} | `
+ : ''
+ output += `\t\t${cell1}${item.channelCount} | ${item.guideUrl} |
\n`
+ }
+ output += '\t\n'
+
+ output += '