forked from FoundKeyGang/FoundKey
Clean up
This commit is contained in:
parent
96f75842de
commit
4253f9e083
1 changed files with 1 additions and 4 deletions
|
@ -9,13 +9,10 @@ const escape = function(text) {
|
||||||
.replace(/</g, '<');
|
.replace(/</g, '<');
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = function(tokens, shouldBreak, shouldEscape) {
|
module.exports = function(tokens, shouldBreak) {
|
||||||
if (shouldBreak == null) {
|
if (shouldBreak == null) {
|
||||||
shouldBreak = true;
|
shouldBreak = true;
|
||||||
}
|
}
|
||||||
if (shouldEscape != null) {
|
|
||||||
alert('do not use this option')
|
|
||||||
}
|
|
||||||
|
|
||||||
const me = riot.mixin('i').me;
|
const me = riot.mixin('i').me;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue