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?
Asked
Active
Viewed 2.5k times
6

Logan Kling
- 569
- 2
- 6
- 19
1 Answers
15
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
- 519
- 4
- 9