Open1
yaml記法に対するメモ
yarnの記法について忘れないようメモ
参考
# 一行コメントはこのように記述する。
--- # 「一つのファイル内に複数のYAMLドキュメントを埋め込むときはこのようなハイフン3つのセパレータを用いる。
# スカラータイプ
key: value # String型
key_2: Another value goes here. # String型
key with spaces: value # String型(キーにスペースがあってもOK )
number_value: 100 # Number型
scientific_notation: 1e+12 # Number型
hex_notation: 0x123 # Number型の 291
octal_notation: 0123 # Number型 83
true_value: true # Boolean型
false_value: false # Boolean型
yes_value: yes # Boolean型のtrue
no_value: no # Boolean型のfalse
yes_enclosed: "yes" # yes, noなどを文字列にしたい場合は""で囲む
null_value: null # Null
another_null_value: ~ # Null