import Node from "./Node"; export class DescriptionListNode extends Node { matching() { return this.node.type === "description_list"; } tag() { return "dl"; } } export class DescriptionTitleNode extends Node { matching() { return this.node.type === "description_title"; } tag() { return "dt"; } } export class DescriptionDataNode extends Node { matching() { return this.node.type === "description_data"; } tag() { return "dd"; } }