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) 197 B
module.exports = class Title { constructor(tokens){ this.tokens = tokens; } toString(){ return '<t>\n' + this.tokens.map(t => t.toString()).join('') + '</t>\n'; } };