diff --git a/src/index.ts b/src/index.ts
index 85289f2a0832415c837a1418c50ac138228b8211..a44cd2c3a9e39207f602a714c9787cf6adc97cf5 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -33,6 +33,29 @@ export function inspect(tree: MfmNode[], action: (node: MfmNode) => void): void
 	}
 }
 
+export function extract(nodes: MfmNode[], type: (MfmNode['type'] | MfmNode['type'][])): MfmNode[] {
+	function predicate(node: MfmNode, type: (MfmNode['type'] | MfmNode['type'][])): boolean {
+		if (Array.isArray(type)) {
+			return (type.some(i => i == node.type));
+		}
+		else {
+			return (type == node.type);
+		}
+	}
+
+	const dest = [] as MfmNode[];
+	for (const node of nodes) {
+		if (predicate(node, type)) {
+			dest.push(node);
+		}
+		if (node.children != null) {
+			dest.push(...extract(node.children, type));
+		}
+	}
+
+	return dest;
+}
+
 export {
 	MfmNode,
 	MfmBlock,