this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Document blockquote

+6
+6
rehype-custom-html.ts
··· 1 1 import type { Plugin } from "unified"; 2 2 import type { Root, Element, Node } from "hast"; 3 3 type Options = {}; 4 + /* 5 + blockquote flags go in the first line 6 + they are formatted as: 7 + `$FLAG `, where `FLAG` is the flag name 8 + there can only be one flag per blockquote 9 + */ 4 10 5 11 function blockquote(node: Element) { 6 12 for (const child of node.children) {