Fix issues in text (#415)

diff --git a/docs/docs/components/text.md b/docs/docs/components/text.md
index 9d8ea5c..fe559b9 100644
--- a/docs/docs/components/text.md
+++ b/docs/docs/components/text.md
@@ -68,13 +68,17 @@
 :::
 
 ### word-break
-:::warning Android compatibility
 The word-break behavior is unpredictable and ROM dependent. Actually, the word-break strategy relies on `Minikin`, which is highly inconsistent cross different Android ROMs, you should not rely its behavior.
 
+:::warning Android compatibility
 Generally speaking, you would meet inconsistent word-break behavior if one of the following conditions meets:
 * Mix Chinese/Japanese/Korean (CJK) text and other text, the inconsistent word-break behavior would happen on the intersection text of multiple languages.
 * Mix half-width and full-width among non-CJK text, the inconsistent word-break behavior would happen on the intersection text of half-width and full-width text.
 :::
 
+::: tip hack into word-break
+Developers could add `\uFEFF` 即[ZERO WIDTH NO-BREAK SPACE](http://jkorpela.fi/chars/spaces.html) just after the character with inconsistent word-break behavior to force no-break strategy, ref [demo](http://dotwe.org/vue/88a4b46f0dc1d1f6d82c506f490029ce) to see more detail。`\uFEFF` may not work on all Android ROMs, as some of them may just ignore it.
+:::
+
 ## Example
 * [Basic usage for `<text>`](http://dotwe.org/vue/7d2bf6e112ea26984fd5930663f092e0).
diff --git a/docs/zh/docs/components/text.md b/docs/zh/docs/components/text.md
index d7e55e7..902d864 100644
--- a/docs/zh/docs/components/text.md
+++ b/docs/zh/docs/components/text.md
@@ -70,14 +70,18 @@
 :::
 
 ### word-break
-:::warning Android compatibility
 word-break 行为是不可预测的且与 Android ROM 强相关。事实上,word-break 行为依赖 Android 系统的 `Minikin` 组件,而 `Minikin`在各个 Android ROMs 上差别很大,开发者不应该依赖其行为。
 
+:::warning Android compatibility
 一般来说,在下列场景下你可能会遇到 word-break 在不同机器上不一致的现象:
 * 中文/日文/韩文(*即 CJK 文字*)与其他文字混合排布时,在 CJK 文字和其他文件相交区域可能会遇到 word-break 不一致的现象。
 * 全角非 JCK 文字和半角非 CJK 文字混合时,全角和半角相交的地方可能会遇到 word-break 不一致的现象。
 :::
 
+::: tip hack into word-break
+开发者可通过在意外换行处添加 `\uFEFF` 即[ZERO WIDTH NO-BREAK SPACE](http://jkorpela.fi/chars/spaces.html)以触发**强制不换行**,详细用法可参考[demo](http://dotwe.org/vue/88a4b46f0dc1d1f6d82c506f490029ce)。请注意这个方法**无法**保证在所有 Android ROM 上有效,一些 ROM 会忽略 *ZERO WIDTH NO-BREAK SPACE* 指令。
+:::
+
 ## 示例
 * [`<text>`的基本用法](http://dotwe.org/vue/7d2bf6e112ea26984fd5930663f092e0)
   
\ No newline at end of file