2016/07/05 YAMLで変数を定義する ほか

YAMLで変数を定義する

using YAML with variables - Stack Overflow
http://stackoverflow.com/questions/4150782/using-yaml-with-variables

変数定義はできないけれど、値を定義してそのコピーを後で使うことはできる(?)
&hogeで宣言して*hogeで取り出すのかな。

example_post: &example
  title: My mom likes roosters
  body: Seriously, she does. And I don't know when it started.
  date: 8/18/2012
first_post: *example
second_post:
  title: whatever, etc.