Top "Yaml" questions

Use this tag for questions about the YAML data serialization format only, not for questions about programs (or examples) that happen to have their configuration in a YAML format.

What is the use of the pipe symbol in YAML?

I am new to yaml, and I have a question about the pipe symbol (|) used for multiple lines. Does YAML …

yaml
Is there YAML syntax for sharing part of a list or map?

So, I know I can do something like this: sitelist: &sites - www.foo.com - www.bar.com …

arrays dictionary yaml cross-reference
YAML media type?

What is the most appropriate media type (formally MIME type) to use when sending data structured with YAML over HTTP …

http mime mime-types yaml
PHP YAML Parsers

Does anyone know of a good YAML Parser for PHP? If so, what are the pros and cons of this …

php parsing yaml
Ruby loading config (yaml) file in same dir as source

in HOME/path_test/ I have: load_test.rb: require 'yaml' cnf = YAML::load(File.open('config.yml')) puts cnf[…

ruby path yaml configuration-files
How do you save values into a YAML file?

Inside my persist.yml file. I have the following key-value pair... session = 0 How do I update the YAML file such …

ruby ruby-on-rails-3 yaml
More complex inheritance in YAML?

YAML has inheritance. The most clear example I have ever seen is here: http://blog.101ideas.cz/posts/dry-your-yaml-files.html …

inheritance yaml
Changing font in PDF produced by rmarkdown

I am producing reports using rmarkdown. When knitting a PDF --- title: "Untitled" output: pdf_document --- I would like …

r pdf latex yaml r-markdown
How to set dynamic values with Kubernetes yaml file

For example, a deployment yaml file: apiVersion: extensions/v1beta1 kind: Deployment metadata: name: guestbook spec: replicas: 2 template: metadata: labels: …

templates kubernetes yaml config key-value
Validating a yaml document in python

One of the benefits of XML is being able to validate a document against an XSD. YAML doesn't have this …

python yaml validation