#1888·stackedit

Feat Request: add support for Infographic chart

Author: hustccCreated Jan 4, 2026Updated Mar 19, 2026

There is a markdown syntax similar to mermaid, which is quite suitable for use in markdown editors.

typescript
import { Infographic } from '@antv/infographic';

const infographic = new Infographic({
  container: "#container",
  height: 240,
  editable: true,
});

const syntax = `
infographic list-row-horizontal-icon-arrow
data
  title 互联网技术演进史
  desc 从Web 1.0到AI时代的关键里程碑
  items
    - time 1991
      label 万维网诞生
      desc Tim Berners-Lee发布首个网站,开启互联网时代
      icon mdi/web
    - ...
`

infographic.render(syntax);
Image

We can help to pr.