1

いくつかの YAML ファイルを作成しようとしていますが、YAML ファイルを正しい形式で取得するのに苦労しています。値の文字列をすべて同じインデントにしようとしていますが、うまくいかないようです。

ResourceIndicators:
  version: 1.0.0
  name: This is the name
  neType: Text
  category: Text
  description: The is the first line of the sentence and then we continue 
    on to the second line but this line should be indented to match the 
    first line of the string. 

これは私が持っているものですが、探しています:

ResourceIndicators:
  version: 1.0.0
  name: This is the name
  neType: Text
  category: Text
  description: The is the first line of the sentence and then we continue 
               on to the second line but this line should be indented to 
               match the first line of the string. 
4

1 に答える 1