mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 23:51:01 -07:00
Clean up
This commit is contained in:
parent
b0d4a7bdf3
commit
c31e1c7e37
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