All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
exports.enter = {strikethrough: onenterstrikethrough}
|
|
exports.exit = {strikethrough: onexitstrikethrough}
|
|
|
|
function onenterstrikethrough() {
|
|
this.tag('<del>')
|
|
}
|
|
|
|
function onexitstrikethrough() {
|
|
this.tag('</del>')
|
|
}
|