Update richtext.md
diff --git a/source/cn/references/components/richtext.md b/source/cn/references/components/richtext.md
index fe9c4a6..470adc9 100644
--- a/source/cn/references/components/richtext.md
+++ b/source/cn/references/components/richtext.md
@@ -6,10 +6,8 @@
 version: 2.1
 ---
 
-## 概况
 富文本组件可以内嵌 `<span>` `<a>` `<image> `。同时它也支持 `<span>` `<a>` `<image> ` 的嵌套。
 
-## 语法
 只有 `<span>`, `<a>` and `<image>` 可以包含在 `<richtext>` 标签里。`<span>` and `<a>` 会被显示为 `display:inline`,而 `<image>` 会被显示为 `display:inline-block`。
 
 `<richtext>` 的子节点分两种类型。
@@ -18,8 +16,7 @@
 
 富文本组件内部树形结构不能超过255层,超过的层会被忽略。
 
-## 使用注意
-
+注意事项
 * `<a>` 标签在 iOS 上恒定为 `color:blue` 蓝色样式,它孩子节点也会被应用为该样式,见下面样例。Android 上无此限制。
 * `<image>` 标签必须指定 `width` 和 `height`.
 * 在图片下载完成前,`<image>` 会保持空白状态,目前不支持显示占位图。
@@ -27,16 +24,19 @@
 
 ## 属性
 
-富文本组件只支持以下属性
+富文本组件的子节点支持的属性如下。
 
-### image
-* src
-* **pseudo-ref** (string) <span class="api-version">v0.15+</span>,开发者指定的索引,会被传给回调方法 **onitemclick** 。
+#### image
 
-### a
-* href
+* **src**. 图片链接。
+* **pseudo-ref**, <span class="api-version">v0.15+</span>. 开发者指定的索引,会被传给回调方法 **itemclick**。
 
-### span
+#### a
+
+* **herf**. Herf。
+
+#### span
+
 `<span>` 不支持任何属性,文本需要包在 `<span>` 里面,例如 `<span>Hello World</span>`。
 
 ## 样式
@@ -66,19 +66,13 @@
 
 ## 事件
 
-### onitemclick
-
-触发时机
-* `img` 被点击
-* 没有任何父节点是 `a`
-
-如果第二个条件不满足,Weex 会尝试打开 `a` 标签指定的链接。
-
-`img` 的 **pseudo-ref** 会作为参数传回来。
-
-### 通用事件
-富文本组件支持 Weex [通用事件](https://weex-project.io/cn/wiki/common-events.html)
+* **通用事件** 支持所有[通用事件](/cn/wiki/common-events.html)。
+* **itemclick**. 触发时机
+   * `img` 被点击
+   * 没有任何父节点是 `a`
+   * 如果第二个条件不满足,Weex 会尝试打开 `a` 标签指定的链接。
+   * `img` 的 **pseudo-ref** 会作为参数传回来。
 
 ## 示例
 
-[richtext 示例](http://dotwe.org/vue/f60fa4323e8248c91ed88d53af2ce9fc)
\ No newline at end of file
+[try it](http://dotwe.org/vue/f60fa4323e8248c91ed88d53af2ce9fc)