mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-27 14:56:44 -06:00
30 lines
902 B
JavaScript
30 lines
902 B
JavaScript
module.exports = function(tokens, canBreak, escape) {
|
|
if (canBreak == null) {
|
|
canBreak = true;
|
|
}
|
|
if (escape == null) {
|
|
escape = true;
|
|
}
|
|
return tokens.map(function(token) {
|
|
switch (token.type) {
|
|
case 'text':
|
|
if (escape) {
|
|
return token.content
|
|
.replace(/>/g, '>')
|
|
.replace(/</g, '<')
|
|
.replace(/(\r\n|\n|\r)/g, canBreak ? '<br>' : ' ');
|
|
} else {
|
|
return token.content
|
|
.replace(/(\r\n|\n|\r)/g, canBreak ? '<br>' : ' ');
|
|
}
|
|
case 'bold':
|
|
return '<strong>' + token.bold + '</strong>';
|
|
case 'link':
|
|
return '<mk-url href="' + token.content + '" target="_blank"></mk-url>';
|
|
case 'mention':
|
|
return '<a href="' + CONFIG.url + '/' + token.username + '" target="_blank" data-user-preview="' + token.content + '">' + token.content + '</a>';
|
|
case 'hashtag': // TODO
|
|
return '<a>' + token.content + '</a>';
|
|
}
|
|
}).join('');
|
|
}
|