All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
exports.canContainEols = ['delete']
|
|
exports.enter = {strikethrough: enterStrikethrough}
|
|
exports.exit = {strikethrough: exitStrikethrough}
|
|
|
|
function enterStrikethrough(token) {
|
|
this.enter({type: 'delete', children: []}, token)
|
|
}
|
|
|
|
function exitStrikethrough(token) {
|
|
this.exit(token)
|
|
}
|