Spaces:
Runtime error
Runtime error
File size: 228 Bytes
2c00ea8 | 1 2 3 4 5 6 7 | import type { MarkdownElement } from "../markdown/types";
export function flattenTree(elem: MarkdownElement): MarkdownElement[] {
if ("children" in elem) return [elem, ...elem.children.flatMap(flattenTree)];
return [elem];
}
|