YAML Ain't Markup Language is a data serialization language that matches user’s expectations about data. It designed to be human friendl...
YAML Ain't Markup Language is a data serialization language that matches user’s expectations about data. It designed to be human friendly and works perfectly with other programming languages. It is useful to manage data and includes Unicode printable characters. This chapter will give you an introduction to YAML and gives you an idea about its features
Now that you have an idea about YAML and its features, let us learn its basics with syntax and other operations. Remember that YAML includes a human readable structured format.
Rules for Creating YAML file
When you are creating a file in YAML, you should remember the following basic rules −
YAML is case sensitive
The files should have .yaml or .yml as the extension
YAML allows spaces for indentation.
Basic Components of YAML File
The basic components of YAML are described below −
Conventional Block Format
This block format uses hyphen+space to begin a new item in a specified list. Observe the example shown below −
--- # Favorite movies - DDLJ - Sholye - Sahid
Inline Format
Inline format is delimited with comma and space and the items are enclosed in JSON. Observe the example shown below −
--- # Shopping list [mobile,laptop,HDMI Cable,Router]
Folded Text
Folded text converts newlines to spaces and removes the leading whitespace. Observe the example shown below −
- {name: Raman Sharma, age: 40} - name: Manoj age: 27
The structure which follows all the basic conventions of YAML is shown below −
men: [Raman, Manoj] women: - Mary - Susan
Synopsis of YAML Basic Elements
The synopsis of YAML basic elements is given here: Comments in YAML begins with the (#) character.
Comments must be separated from other tokens by whitespaces.
Indentation of whitespace is used to denote structure.
Tabs are not included as indentation for YAML files.
List members are denoted by a leading hyphen (-).
List members are enclosed in square brackets and separated by commas.
Associative arrays are represented using colon ( : ) in the format of key value pair. They are enclosed in curly braces {}.
Multiple documents with single streams are separated with 3 hyphens (---).
Repeated nodes in each file are initially denoted by an ampersand (&) and by an asterisk (*) mark later.
YAML always requires colons and commas used as list separators followed by space with scalar values.
Nodes should be labelled with an exclamation mark (!) or double exclamation mark (!!), followed by string which can be expanded into an URI or URL.
It was really helpful Raman..
ReplyDelete