사용자 도구

사이트 도구


yaml

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
yaml [2017/09/05 09:42]
kwon37xi
yaml [2017/09/05 09:44]
kwon37xi [다른 값 참조]
줄 7: 줄 7:
   * [[https://stackoverflow.com/questions/2063616/how-to-reference-a-yaml-setting-from-elsewhere-in-the-same-yaml-file|syntax - how to reference a YAML "setting" from elsewhere in the same YAML file? - Stack Overflow]]   * [[https://stackoverflow.com/questions/2063616/how-to-reference-a-yaml-setting-from-elsewhere-in-the-same-yaml-file|syntax - how to reference a YAML "setting" from elsewhere in the same YAML file? - Stack Overflow]]
   * Reference example 2.9   * Reference example 2.9
 +
 +<code yaml>
 +# 새미 소사가 반복될 경우
 +---
 +hr: # 1998 hr ranking
 +  - Mark McGwire
 +  - Sammy Sosa
 +rbi:
 +  # 1998 rbi ranking
 +  - Sammy Sosa
 +  - Ken Griffey
 +
 +# 다음과 같이 참조 가능
 +
 +---
 +hr:
 +  - Mark McGwire
 +  # Following node labeled SS
 +  - &SS Sammy Sosa
 +rbi:
 +  - *SS # Subsequent occurrence
 +  - Ken Griffey
 +</code>
  
yaml.txt · 마지막으로 수정됨: 2017/09/05 09:44 저자 kwon37xi