NitWikit/docs/扩展阅读/YAML语法/概览.md
2024-05-04 16:03:40 +08:00

42 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
sidebar_position: 1
---
# 概览
## 什么是YAML?
> YAML 是 "YAML Ain't a Markup Language"YAML 不是一种标记语言的递归缩写。在开发的这种语言时YAML 的意思其实是:"Yet Another Markup Language"(仍是一种标记语言)。
>
> YAML 的语法和其他高级语言类似并且可以简单表达清单、散列表标量等数据形态。它使用空白符号缩进和大量依赖外观的特色特别适合用来表达或编辑数据结构、各种配置文件、倾印调试内容、文件大纲例如许多电子邮件标题格式和YAML非常接近
>
>> YAML 的配置文件后缀为 .ymlrunoob.yml 。
多数时候你的插件配置都是yml 花点时间学学是很有用处的
## 概要
- 大小写敏感
- 使用缩进表示层级关系
- 缩进不允许使用tab,只允许空格
- 缩进的空格数不重要,只要相同层级的元素左对齐即可
- #’表示注释
:::info
有可能你的文本编辑器(在我印象中n--是的)用的缩进不是空格,导致插件报错
自己在文本编辑器找找或者浏览器搜下怎么改
:::
# 参考
https://www.runoob.com/w3cnote/yaml-intro.html
https://www.cnblogs.com/AcAc-t/p/yaml_anchor_refer.html
https://curder.github.io/yaml-study/guide/quote.html
https://zhuanlan.zhihu。com/p/145173920
https://zhuanlan.zhihu.com/p/616843858