(options)
| 173 | * React element. |
| 174 | */ |
| 175 | export function Markdown(options) { |
| 176 | const processor = createProcessor(options) |
| 177 | const file = createFile(options) |
| 178 | return post(processor.runSync(processor.parse(file), file), options) |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Component to render markdown with support for async plugins |
nothing calls this directly
no test coverage detected
searching dependent graphs…