5

I know that you can make a single line comment in YAML by using the # tag, but I haven't been able to find something like /* in java that starts a comment & has to be finished off with a */. Does such an operator exist in YAML?

Logan Kling
  • 559
  • 2
  • 4
  • 17

1 Answers1

13

YAML does not support multiple line comments. If you want to use them. You can just try

# this
# is a multiple
# line comment
Shamal Sandeep
  • 499
  • 4
  • 9