logoAnt Design X

DesignDevelopmentComponentsX MarkdownX SDKPlayground
  • Introduction
  • Code Examples
  • Streaming Rendering
  • Themes
  • Plugins
    • Overview
    • Latex
    • HighlightCode
    • Mermaid
    • CustomPlugins
    • Theme & Locale
  • Components
    • Think
    • DataChart
    • Custom Component

Streaming Rendering

Resources

Ant Design
Ant Design Charts
Ant Design Pro
Pro Components
Ant Design Mobile
Ant Design Mini
Ant Design Web3
Ant Design Landing-Landing Templates
Scaffolds-Scaffold Market
Umi-React Application Framework
dumi-Component doc generator
qiankun-Micro-Frontends Framework
Ant Motion-Motion Solution
China Mirror 🇨🇳

Community

Awesome Ant Design
Medium
Twitter
yuque logoAnt Design in YuQue
Ant Design in Zhihu
Experience Cloud Blog
seeconf logoSEE Conf-Experience Tech Conference

Help

GitHub
Change Log
FAQ
Bug Report
Issues
Discussions
StackOverflow
SegmentFault

Ant XTech logoMore Products

yuque logoYuQue-Document Collaboration Platform
AntV logoAntV-Data Visualization
Egg logoEgg-Enterprise Node.js Framework
Kitchen logoKitchen-Sketch Toolkit
Galacean logoGalacean-Interactive Graphics Solution
xtech logoAnt Financial Experience Tech
Theme Editor
Made with ❤ by
Ant Group and Ant Design Community

Introduction

Optimize streaming Markdown rendering in LLM scenarios by caching to hide markdown formatting and animation effects.

Code Demos

Configuration

streaming

ParameterDescriptionTypeDefault
hasNextChunkWhether there is more streaming databooleanfalse
enableAnimationEnable text fade-in animationbooleanfalse
animationConfigText animation configurationControllerUpdate{ from: { opacity: 0 }, to: { opacity: 1 }, config: { tension: 170, friction: 26 } }

Usage Example

tsx
import { XMarkdown } from '@ant-design/x-markdown';
const App = () => {
return (
<XMarkdown
content="# Hello World\n\nThis is a streaming rendering example."
streaming={{
hasNextChunk: true,
enableAnimation: true,
animationConfig: {
from: { opacity: 0 },
to: { opacity: 1 },
},
}}
/>
);
};
Caching

Hide Markdown formatting through caching

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
Animation Effects
CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code