lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

yaml-syntax.md (342B)


      1 +++
      2 title = 'YAML syntax'
      3 +++
      4 ## YAML syntax
      5 Indentation is structure, with spaces (usually 2).
      6 Comments use `#`.
      7 
      8 Elements of sequence of scalars (strings, numbers) are a list starting with dash.
      9 Maps are `key: value`.
     10 
     11 Long literals can be written with multiple lines that preserve newlines (`|`) or get folded and replaced by space (`>`).