diff --git a/src/helpers/README.md b/src/helpers/README.md
index 94237ef..92bdd2d 100644
--- a/src/helpers/README.md
+++ b/src/helpers/README.md
@@ -56,10 +56,13 @@ MeNav 的助手函数分为四类:
```handlebars
{{#ifHttpUrl url}}
- {{!-- 只有 http/https 才尝试加载 favicon --}}
-
+ {{! 只有 http/https 才尝试加载 favicon }}
+
{{else}}
-
+
{{/ifHttpUrl}}
```
@@ -79,8 +82,13 @@ MeNav 的助手函数分为四类:
对字符串进行 URL 组件编码(同名于浏览器 API,用作模板内联助手),适用于将动态 URL 参数安全拼接到查询串:
```handlebars
-{{!-- 构造第三方 Favicon API 的 url 参数 --}}
-
+{{! 构造第三方 Favicon API 的 url 参数 }}
+
```
### 核心函数
@@ -101,7 +109,7 @@ MeNav 的助手函数分为四类:
用于生成内容的助手函数:
```handlebars
-{{formatDate created "YYYY-MM-DD"}}
+{{formatDate created 'YYYY-MM-DD'}}
{{limit description 100}}
{{json data}}
```
@@ -111,14 +119,14 @@ MeNav 的助手函数分为四类:
用于控制结构的助手函数:
```handlebars
-{{#ifEquals type "article"}}
- 文章
+{{#ifEquals type 'article'}}
+ 文章
{{else}}
- 页面
+ 页面
{{/ifEquals}}
{{#each (range 1 5)}}
- {{this}}
+ {{this}}
{{/each}}
```
@@ -128,7 +136,7 @@ MeNav 的助手函数分为四类:
```handlebars
{{#each (slice items 0 5)}}
-
暂无数据
+暂无数据
{{else}} -