UNPKG

cetem-publico

Version:

A wrapper for CETEMPúblico, an European Portuguese corpus of news extracts from the newspaper Público, with 180 million words tagged automatically using PALAVRAS.

14 lines (10 loc) 199 B
module.exports = class Authors { constructor(tokens){ this.tokens = tokens; } toString(){ return '<a>\n' + this.tokens.map(t => t.toString()).join('') + '</a>\n'; } };