Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having issues pulling from a YAML config file : `Fatal error: while parsing a block mapping; expected , but found BlockEntry . I recall being able to copy/paste my YAML contents into a website, and it giving me line-by-line syntax errors. Does anyone know of a linux package that will fix errors like this, or the website I am thinking of?

Thanks `

share|improve this question
1  
possible duplicate of YAML validation – Daniel Vandersluis Oct 19 '10 at 19:13

4 Answers

Given that you have a perl install on the server you are working on, and it has some of the basic YAML tools, you can use...

perl -MYAML -e 'use YAML;YAML::LoadFile("./file.yaml")'

It should be noted that this will be strict in it's interpretation of the file, but useful.

share|improve this answer

Just found this

http://yamllint.com/

share|improve this answer

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.