diff --git a/README-zh_CN.md b/README-zh_CN.md
index 1838df0fcb..854e693e14 100644
--- a/README-zh_CN.md
+++ b/README-zh_CN.md
@@ -53,7 +53,7 @@ yarn add antd
## 🔨 示例
-````jsx
+```jsx
import { Button, DatePicker } from 'antd';
const App = () => (
@@ -62,12 +62,13 @@ const App = () => (
>
);
+```
引入样式:
```jsx
import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
-````
+```
你也可以使用 [babel-plugin-import](https://ant.design/docs/react/getting-started-cn#按需加载)。
diff --git a/components/card/index.en-US.md b/components/card/index.en-US.md
index b45738902b..d68bff6c3c 100644
--- a/components/card/index.en-US.md
+++ b/components/card/index.en-US.md
@@ -13,7 +13,7 @@ A card can be used to display content related to a single subject. The content c
## API
-```html
+```jsx
Card content
```
diff --git a/components/card/index.zh-CN.md b/components/card/index.zh-CN.md
index f70e2a0165..24a158516e 100644
--- a/components/card/index.zh-CN.md
+++ b/components/card/index.zh-CN.md
@@ -14,7 +14,7 @@ cols: 1
## API
-```html
+```jsx
卡片内容
```
diff --git a/components/input/index.en-US.md b/components/input/index.en-US.md
index 8d3d1ad5d9..7e98841924 100644
--- a/components/input/index.en-US.md
+++ b/components/input/index.en-US.md
@@ -66,7 +66,7 @@ Supports all props of `Input`.
| compact | Whether use compact style | boolean | false |
| size | The size of `Input.Group` specifies the size of the included `Input` fields. Available: `large` `default` `small` | string | `default` |
-```html
+```jsx
diff --git a/components/input/index.zh-CN.md b/components/input/index.zh-CN.md
index 73ec7d9a75..8713a72edd 100644
--- a/components/input/index.zh-CN.md
+++ b/components/input/index.zh-CN.md
@@ -67,7 +67,7 @@ Input 的其他属性和 React 自带的 [input](https://facebook.github.io/reac
| compact | 是否用紧凑模式 | boolean | false |
| size | `Input.Group` 中所有的 `Input` 的大小,可选 `large` `default` `small` | string | `default` |
-```html
+```jsx
diff --git a/components/menu/index.en-US.md b/components/menu/index.en-US.md
index f4b12cfe8b..ae60095720 100644
--- a/components/menu/index.en-US.md
+++ b/components/menu/index.en-US.md
@@ -15,7 +15,7 @@ More layouts with navigation: [Layout](/components/layout).
## API
-```html
+```jsx