(rawChildren)
| 8 | // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 9 | |
| 10 | export function prepareMDX(rawChildren) { |
| 11 | const toc = getTableOfContents(rawChildren) |
| 12 | const children = wrapChildrenInMaxWidthContainers(rawChildren) |
| 13 | return { toc, children } |
| 14 | } |
| 15 | |
| 16 | function wrapChildrenInMaxWidthContainers(children) { |
| 17 | // Auto-wrap everything except a few types into |
no outgoing calls
no test coverage detected
searching dependent graphs…