跳到主要内容

docusaurus语法

markdown语法

markdown语法在这里也适用,可以点击标题进入查看详细语法,这里列举一些常用的.

** 粗体 **
** 粗体 **


> 引用语法

Dorothy followed her through many of the beautiful rooms in her castle.

Images

docusaurus里面有三种不同的方式展示图像:Markdown 语法、CJS require、ES import 语法。

// Markdown 语法
![示例横幅]('https://png.zjiaxiang.cn/wenjian/myIcon.webp')

// CJS require
<img
style={{width:300+'px',height:300+'px'}}
src={require('../../static/img/docusaurus.png').default}
alt="Example banner"
/>

// ES import
import myImageUrl from '../../static/img/docusaurus.png';
<img src={myImageUrl} alt="Example banner" />;

可以直接使用CJS require语法支持图片自定义大小.

Example banner

告示框

:::note可选标题!

Some content with Markdown syntax. note(备注).

:::

提示

Some content with Markdown syntax. tip(提示).

信息

Some content with Markdown syntax. info(信息).

警告

Some content with Markdown syntax.caution(警告).

危险

Some content with Markdown syntax.danger(危险).