mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
41 lines
514 B
Markdown
41 lines
514 B
Markdown
# YAML
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [Further readings](#further-readings)
|
|
|
|
## TL;DR
|
|
|
|
```yaml
|
|
---
|
|
# This is a comment
|
|
string: this is a string
|
|
number: 0
|
|
truthy: true
|
|
list:
|
|
- element
|
|
- element
|
|
object:
|
|
key: value
|
|
nested:
|
|
can: do
|
|
lists:
|
|
- too
|
|
```
|
|
|
|
## Further readings
|
|
|
|
- [yaml-multiline.info]
|
|
- [`yamllint`][yamllint]
|
|
|
|
<!--
|
|
References
|
|
-->
|
|
|
|
<!-- Knowledge base -->
|
|
[yamllint]: yamllint.md
|
|
|
|
<!-- Others -->
|
|
[yaml-multiline.info]: https://yaml-multiline.info
|