This commit is contained in:
10
node_modules/micromark-extension-gfm-strikethrough/html.js
generated
vendored
Normal file
10
node_modules/micromark-extension-gfm-strikethrough/html.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
exports.enter = {strikethrough: onenterstrikethrough}
|
||||
exports.exit = {strikethrough: onexitstrikethrough}
|
||||
|
||||
function onenterstrikethrough() {
|
||||
this.tag('<del>')
|
||||
}
|
||||
|
||||
function onexitstrikethrough() {
|
||||
this.tag('</del>')
|
||||
}
|
||||
Reference in New Issue
Block a user