Refactor: Better argument name

This commit is contained in:
syuilo⭐️ 2016-12-31 18:41:52 +09:00
parent 174648c954
commit 94e983a5cc

View file

@ -1,8 +1,8 @@
const riot = require('riot'); const riot = require('riot');
module.exports = function(tokens, canBreak, escape) { module.exports = function(tokens, shouldBreak, escape) {
if (canBreak == null) { if (shouldBreak == null) {
canBreak = true; shouldBreak = true;
} }
if (escape == null) { if (escape == null) {
escape = true; escape = true;
@ -17,10 +17,10 @@ module.exports = function(tokens, canBreak, escape) {
return token.content return token.content
.replace(/>/g, '>') .replace(/>/g, '>')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/(\r\n|\n|\r)/g, canBreak ? '<br>' : ' '); .replace(/(\r\n|\n|\r)/g, shouldBreak ? '<br>' : ' ');
} else { } else {
return token.content return token.content
.replace(/(\r\n|\n|\r)/g, canBreak ? '<br>' : ' '); .replace(/(\r\n|\n|\r)/g, shouldBreak ? '<br>' : ' ');
} }
case 'bold': case 'bold':
return '<strong>' + token.bold + '</strong>'; return '<strong>' + token.bold + '</strong>';