import Node from "./Node"; export default class VideoNode extends Node { matching() { return this.node.type === "video"; } selfClosing() { return true; } tag() { return [ { tag: "iframe", attrs: { src: this.node.attrs.src, }, }, ]; } text() { return null; } }