Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how to comment a block of lines in yaml?

share|improve this question

2 Answers

up vote 98 down vote accepted

I don't believe YAML supports block comments.

From Wikipedia:

Comments begin with the number sign ( # ), can start anywhere on a line, and continue until the end of the line

Also from Wikipedia:

The syntax differences are subtle and seldom arise in practice: JSON allows extended charactersets like UTF-32, YAML requires a space after separators like comma, equals, and colon while JSON does not, and some non-standard implementations of JSON extend the grammar to include Javascript's /* ... */ comments. Handling such edge cases may require light pre-processing of the JSON before parsing as in-line YAML.

# If you want to write
# a block-commented Haiku
# you'll need three pound signs
share|improve this answer
8  
The first and last lines / are good, but the middle one / lacks a syllable. – CaptainMurphy Dec 5 '12 at 22:38
4  
I do not know how / to fix it now, so I'm just / going to take a bow. – Dolph Jan 14 at 23:13
1  
I've just tried my hand / at repairing Dolph's Haiku / what do you guys think? – Claudiu May 6 at 20:18

See this link.

"An explicit comment is marked by a “#” indicator". Thats all about it.

share|improve this answer
Glad you posted this, I read the first line of @Dolph's answer and stopped reading, only for your answer I might of given up! :) – David K Jul 19 '12 at 11:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.