···11import type { Plugin } from "unified";
22import type { Root, Element, Node } from "hast";
33type Options = {};
44+/*
55+ blockquote flags go in the first line
66+ they are formatted as:
77+ `$FLAG `, where `FLAG` is the flag name
88+ there can only be one flag per blockquote
99+*/
410511function blockquote(node: Element) {
612 for (const child of node.children) {