Creates an incremental markdown stream. See the module docs for the caching model; ui.markdown() remains the one-call wrapper for static sources.
const stream = createMarkdownStream();stream.append("# Title\n\nstreamed ");stream.append("tokens...");app.view(() => stream.vnode()); Copy
const stream = createMarkdownStream();stream.append("# Title\n\nstreamed ");stream.append("tokens...");app.view(() => stream.vnode());
Creates an incremental markdown stream. See the module docs for the caching model; ui.markdown() remains the one-call wrapper for static sources.