OSDN Git Service

Regular updates
[twpd/master.git] / yaml.md
diff --git a/yaml.md b/yaml.md
index 695325a..c0182ad 100644 (file)
--- a/yaml.md
+++ b/yaml.md
@@ -24,3 +24,14 @@ child:
   <<: *defaults
   b: 4
 ```
+
+### Reference content
+
+```yaml
+values: &ref
+  - These values
+  - will be reused below
+  
+other_values:
+  <<: *ref
+```