diff options
author | 谭九鼎 <109224573@qq.com> | 2020-01-12 11:05:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 11:05:11 +0800 |
commit | 56ee9f7971be7fe5f4fd582e7a5958b67908a08e (patch) | |
tree | e7d7ec6db00d85952fa4e7212a3ffe6de593f2b3 /zh-cn/yaml-cn.html.markdown | |
parent | 1eecfded69cf0e92b7483ded18d4b2b830f37b47 (diff) |
Update yaml-cn.html.markdown
Diffstat (limited to 'zh-cn/yaml-cn.html.markdown')
-rw-r--r-- | zh-cn/yaml-cn.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zh-cn/yaml-cn.html.markdown b/zh-cn/yaml-cn.html.markdown index 3ba2afd8..ebb3aa62 100644 --- a/zh-cn/yaml-cn.html.markdown +++ b/zh-cn/yaml-cn.html.markdown @@ -16,6 +16,8 @@ YAML 根本不容许文字制表符。 ```yaml +--- # document start + # YAML 中的注解看起来像这样。 ################ @@ -135,7 +137,7 @@ bar: &bar # foo 和 bar 将都含有 name: Everyone has same name -# YAML 还有标签,你可以用它显示地声明类型。 +# YAML 还有标签,你可以用它显式地声明类型。 explicit_string: !!str 0.5 # 一些解析器实现特定语言的标签,就像这个针对 Python 的复数类型。 python_complex_number: !!python/complex 1+2j |