Delete blockQuote.ts

This commit is contained in:
fantasticit 2022-04-01 12:15:46 +08:00 committed by GitHub
parent 5fe787d371
commit 8956e9ed87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -1,9 +0,0 @@
import { Node } from './node';
export class Blockquote extends Node {
type = 'blockquote';
matching() {
return this.DOMNode.nodeName === 'BLOCKQUOTE';
}
}