(options)
| 192 | * Promise to a React element. |
| 193 | */ |
| 194 | export async function MarkdownAsync(options) { |
| 195 | const processor = createProcessor(options) |
| 196 | const file = createFile(options) |
| 197 | const tree = await processor.run(processor.parse(file), file) |
| 198 | return post(tree, options) |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Component to render markdown with support for async plugins through hooks. |
nothing calls this directly
no test coverage detected
searching dependent graphs…