Skip to content

Markdown_CN

阿酱 edited this page Apr 20, 2023 · 1 revision

Markdown 增强

我们在 dumi 现有的 markdown 内置组件中增加了一些常用的组件

SettingPanel

一个可以全局调试主题色的设置面板组件. 你可以使用该组件预览内置的所有色系的适配样式

<SettingPanel />

渲染效果可查看文档右侧的悬浮设置按钮

Alert

用来传达影响系统、功能或页面的状态.

Status

  • error
<Alert status='error'>
  There was an error processing your request
</Alert>

There was an error processing your request
  • success
<Alert status='success'>
  Data uploaded to the server. Fire on!
</Alert>

Data uploaded to the server. Fire on!
  • warning
<Alert status='warning'>
  Seems your account is about expire, upgrade now
</Alert>

Seems your account is about expire, upgrade now
  • info
<Alert status='info'>
  Chakra is going live on August 30th. Get ready!
</Alert>

Chakra is going live on August 30th. Get ready!

Variant

  • subtle
<Alert status='success' variant='subtle'>
  Data uploaded to the server. Fire on!
</Alert>

Data uploaded to the server. Fire on!
  • top-accent
<Alert status='success' variant='top-accent'>
  Data uploaded to the server. Fire on!
</Alert>

Data uploaded to the server. Fire on!
  • solid
<Alert status='success' variant='solid'>
  Data uploaded to the server. Fire on!
</Alert>

Data uploaded to the server. Fire on!
  • left-accent
<Alert status='success' variant='left-accent'>
  Data uploaded to the server. Fire on!
</Alert>

Data uploaded to the server. Fire on!

Title

<Alert status='error' variant='left-accent' title="Your browser is outdated!">
  Your Chakra experience may be degraded.
</Alert>

Your Chakra experience may be degraded.

Ad

展示广告或者邀请信息

<Ad
  image="https://images.unsplash.com/photo-1667489022797-ab608913feeb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHw5fHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=800&q=60"
  submit="Buy Latte"
  link="http://buymeacoffee.com/innocces"
  title="The perfect latte"
  description="Caffè latte is a coffee beverage of Italian origin made with espresso and steamed milk."
></Ad>

Clone this wiki locally