Copyright © 2001-2003 Oren Ben-Kiki, Clark Evans & Brian Ingerson, all rights reserved. This document may be freely copied provided it is not modified.
This specification is a working draft and reflects consensus reached by the members of the yaml-core mailing list. Any questions regarding this draft should be raised on this list at http://lists.sourceforge.net/lists/listinfo/yaml-core.
With this release of the YAML specificiation, we now encourage development of YAML processors, so that the design of YAML can be validated. The specification is still subject to change; however, such changes will be limited to polish and fixing any logical flaws and bugs.
Therefore, this is "Last Call" for changes; if you have a pet feature now is the very last time that it can be proposed before Release Canaidate status. Changes which would cause "Last Call" YAML streams to be invalid will be seriously considered only if absolutely necessary.
YAML™ (rhymes with "camel") is a straightforward machine-parsable data serialization format designed for human readability and interaction with scripting languages such as Perl and Python. YAML is designed for data serialization, formatted dumping, configuration files, log files, Internet messaging and filtering. This specification describes the YAML information model and serialization format. Together with the Unicode standard for characters, it provides all the information necessary to understand YAML Version 1.0 and to construct programs to process YAML information.
YAML Ain't Markup Language, abbreviated YAML, is both a human-readable data serialization format and processing model. This text describes the class of data objects called YAML document streams and partially describes the behavior of computer programs that process them.
YAML document streams encode in a textual form the native data constructs of modern scripting languages. Strings, arrays, hashes, and other user-defined data types are supported. A YAML document stream consists of a sequence of characters, some of which are considered part of the document's content, and others that are used to indicate document structure.
YAML information can be viewed in two primary ways, for machine processing and for human presentation. A YAML processor is a tool for converting information between these complementary views. It is assumed that a YAML processor does its work on behalf of another module, called an application. This specification describes the required behavior of a YAML processor. It describes how a YAML processor must read or write YAML document streams and the information structures it must provide to or obtain from the application.
The design goals for YAML are:
YAML's initial direction was set by the markup language discussions among SML-DEV members. YAML was also conceived with experience gained from the construction and deployment of Brian Ingerson's Perl module Data::Denter. Since then YAML has matured through the ideas and support it has received from its user community.
YAML was first conceived as notation for a simple set of primatives, the sequence, the mapping and the scalar, which, when used recursively to form a graph structure, are strong enough for most machine processing needs. By sequence we mean a ordered collection, by mapping we mean an unordered association of unique keys to values, and by scalar we mean a series of unicode characters. These primitives map cleanly to most modern programming languages; the sequence corresponds to a Perl array and a Python list, the mapping corresponds to a Perl hashtable and a Python dictionary. This basis is also formally justified, as both mapping and sequence are mathematical functions with well defined characteristics. With this core model, YAML supports machine processing with a balance of pratical motivation and theory.
To meet the needs of serialization and human presentation, YAML has many syntatical aspects beyond the primitives described above. As a graph is flattened into a tree, ordering is imposed upon mapping keys and an alias mechaism is used to write subsequent occurances of duplicate nodes. To enhance readability, various writing styles are provided for different aesthetic needs. Further, a comment mechanism allows for annotation othogonal to the "content" of a YAML stream. YAML syntax also has other details, such as placement of line breaks and choice of escaping and scalar formats. While these aspects are essential to a human presentation of YAML, they are not needed for machine processing.
This split between machine processing and human presentation creates an inherent tension. While it may be tempting to drive machine processing with comments, key order, styles and other presentation information, this would greatly complicate the definition and operation of generic tools. Although one could argue that their YAML data is sufficently isolated, information is often used in ways unforseen. Therefore, applications should only rely upon the formal definition of YAML's primitives to drive processing. For example, sequences should be used when order is important for machine processing even though mapping key order may be available. Likewise, duplicate keys should never be used, even though a parser may report them without warning. Overall, this distinction is one of intent. Applications which respect the split between human presentation and machine processing will enjoy the ability to use generic tools such as path expressions evaluators, graph transformation languages, or schema validators.
This separation does not prevent YAML processors from providing mechanisms to report or handle presentation aspects. Human readability is a prime directive for YAML. Therefore, a YAML processor may provide a shadow or wrapper mechanism to maintain and provide access to presentation aspects of a YAML text. In this way an application can have influence over how its information will be written to a stream for the best human impact. Since presentation aspects may be the same for a large class of YAML documents, a stylesheet could also be used to provide preferred key ordering, syntax styles, comments, and other presentation oriented instructions.
YAML integrates and builds upon structures and concepts described by C, Java, Perl, Python, Ruby, RFC0822 (MAIL), RFC1866 (HTML), RFC2045 (MIME), RFC2396 (URI), SAX, SOAP and XML.
YAML's core type system is based on the serialization requirements of Perl, Python and Ruby. YAML directly supports both scalar (string) values and collection ( array, hash) values. Support for common types enables programmers to use their language's native data constructs for YAML manipulation, instead of requiring a special document object model (DOM).
Like XML's SOAP, the YAML serialization supports native graph structures through a rich alias mechanism. Also like SOAP, YAML provides for application-defined types. This allows YAML to serialize rich data structures required for modern distributed computing. YAML provides unique global type names using a namespace mechanism inspired by Java's DNS based package naming convention and XML's URI based namespaces.
YAML's block scoping is similar to Python's. In YAML, the extent of a node is indicated by its column. YAML's literal scalar leverages this by enabling formatted text to be cleanly mixed within an indented structure without troublesome escaping. Further, YAML's block indenting provides for easy inspection of the document's structure.
Motivated by HTML's end-of-line normalization, YAML's folded scalar introduces a unique method of handling white space. In YAML, single line breaks may be folded into a single space, while empty lines represent line break characters. This technique allows for paragraphs to be word-wrapped without affecting the canonical form of the content.
YAML's double quoted scalar uses familar C-style escape sequences. This enables ASCII representation of non-printable or 8-bit (ISO 8859-1) characters such as '\x3B'. 16-bit Unicode and 32-bit (ISO/IEC 10646) characters are supported with escape sequences such as '\u003B' and '\U0000003B'.
The syntax of YAML was motivated by Internet Mail (RFC0822) and remains partially compatible with this standard. Further, YAML borrows the idea of having multiple documents from MIME (RFC2045). YAML's top-level production is a stream of independent documents; ideal for message-based distributed processing systems.
YAML was designed to have an incremental interface that includes both a pull-style input stream and a push-style (SAX-like) output stream interfaces. Together this enables YAML to support the processing of large documents, such as a transaction log, or continuous streams, such as a feed from a production machine.
Newcomers to YAML often search for its correlation to the eXtensible Markup Language (XML). While the two languages may actually compete in several application domains, there is no direct correlation between them. YAML is primarily a data serialization language. XML is often used for various types of data serialization but that is not its fundamental design goal.
There are many differences between YAML and XML. XML was designed to be backwards compatible with Standard Generalized Markup Language (SGML) and thus had many design constraints placed on it that YAML does not share. Also XML, inheriting SGML's legacy, is designed to support structured documents, where YAML is more closely targeted at messaging and native data structures. Where XML is a pioneer in many domains, YAML is the result of many lessons from the XML community.
The YAML and XML information models are starkly different. In XML, the primary construct is an attributed tree, where each element has an ordered, named list of children and an unordered mapping of names to strings. In YAML, the primary constructs are sequence (natively stored as an array), mapping (natively stored as a hash) and scalar values (string, integer, floating point). This difference is critical since YAML's model is directly supported by native data structures in most modern programming languages, where XML's model requires mapping conventions, or an alternative programming component (e.g. a document object model).
It should be mentioned that there are ongoing efforts to define standard XML/YAML mappings. This generally requires that a subset of each language be used.
The terminology used to describe YAML is defined in the body of this specification. The terms defined in the following list are used in building those definitions and in describing the actions of a YAML processor:
This section provides a quick glimpse into the expressive power of YAML. It is not expected that the first-time reader grok all of the examples. Rather, these selections are used as motivation for the remainder of the specification.
YAML's block collections use indentation for scope and begin each member on its own line. Block sequences indicate each member with a dash (-). Block mappings use a colon to mark each (key: value) pair.
|
|
||||||||
|
|
||||||||
YAML also has in-line flow styles for compact notation. The flow sequence is written as a comma separated list within square brackets. In a similar manner, the flow mapping uses curley braces.
|
|
||||||||
YAML uses three dashes (---) to separate documents within a stream (file or socket). Comment lines begin with the pound sign (#). Repeated nodes are first marked with the ampersand (&) and then referenced with an asterisk (*) thereafter.
|
|
||||||||
|
|
||||||||
The question mark indicates a complex key. Within a block sequence, mapping pairs can start immediately following the dash.
|
|
||||||||
Scalar values can be written in block form using a literal style (|) where all new lines count. Or they can be written with the folded style (>) for content that can be word wrapped. In the folded style, newlines are treated as a space unless they are part of a blank or indented line.
|
|
||||||||
|
|
||||||||
YAML's flow scalars include the plain style (most examples thus far) and quoted styles. The double quoted style provides escape sequences. Single quoted style is useful when escaping is not needed. All flow scalars can span multiple lines; intermediate whitespace is trimmed to a single space.
|
|
||||||||
In YAML, plain (unquoted) scalars are given an implicit type depending on the application. YAML's type repository includes integers, floating point values, timestamps, null, boolean, and string values.
|
|
||||||||
|
|
||||||||
Explicit typing is denoted with the bang (!) symbol. Application types should include a domain name and may use the caret (^) to abbreviate subsequent types.
|
|
||||||||
Below are two full-length examples of YAML. On the left is a sample invoice; on the right is a sample log file.
|
|
||||||||
Following are the BNF productions defining the syntax of YAML streams.
Characters are the basis for a YAML stream. Below is a general definition of a character followed by several characters that have specific meaning in particular contexts.
YAML streams use a subset of the Unicode character set. A YAML parser must accept all printable ASCII characters, the space, tab, line break, and all Unicode characters beyond 0x9F. A YAML emitter must only produce those characters accepted by the parser, but should also escape all non-printable Unicode characters if a character table is readily available.
[001] |
c-printable ::=
#x9 | #xA | #xD
| [#x20-#x7E] | #x85
| [#xA0-#xD7FF]
| [#xE000-#xFFFD]
| [#x10000-#x10FFFF] |
/* characters as defined by the Unicode standard, excluding most control characters and the surrogate blocks */ |
The range above explicitly excludes the surrogate block [#xD800-#xDFFF], DEL 0x7F, the C0 control block [#x0-#x1F], the C1 control block [#x80-#x9F], #xFFFE and #xFFFF. Note that in UTF-16, characters above #xFFFF are represented with a surrogate pair. DEL and characters in the C0 and C1 control block may be represented in a YAML stream using escape sequences.
A YAML parser is required to support the UTF-32, UTF-16 and UTF-8 character encodings. If an input stream does not begin with a byte order mark, the encoding shall be UTF-8. Otherwise the encoding shall be UTF-32 (LE or BE), UTF-16 (LE or BE) or UTF-8, as signaled by the byte order mark. Note that as YAML files may only contain printable characters, this does not raise any ambiguities. For more information about the byte order mark and the Unicode character encoding schemes see the Unicode FAQ.
[002] |
c-byte-order-mark ::= #xFEFF |
/* the Unicode ZERO WIDTH NON-BREAKING SPACE character used to mark a UTF-32 or UTF-16 stream and determine byte ordering */ |
Indicators are special characters that are used to describe the structure of a YAML document.
[003] |
c-sequence-entry ::= '-' |
/* indicates a sequence entry */ |
[004] |
c-mapping-entry ::= ':' |
/* separates a key from its value */ |
[005] |
c-sequence-start ::= '[' |
/* starts a flow sequence collection */ |
[006] |
c-sequence-end ::= ']' |
/* ends a flow sequence collection */ |
[007] |
c-mapping-start ::= '{' |
/* starts a flow mapping collection */ |
[008] |
c-mapping-end ::= '}' |
/* ends a flow mapping collection */ |
[009] |
c-collect-entry ::= ',' |
/* separates flow collection entries */ |
[010] |
c-top-key ::= '?' |
/* indicates a complex key */ |
[011] |
c-alias ::= '*' |
/* indicates an alias node */ |
[012] |
c-anchor ::= '&' |
/* indicates an anchor-name property */ |
[013] |
c-transfer ::= '!' |
/* indicates a transfer method property */ |
[014] |
c-literal ::= '|' |
/* indicates a literal scalar */ |
[015] |
c-folded ::= '>' |
/* indicates a folded scalar */ |
[016] |
c-single-quote ::= ''' |
/* indicates a single quoted scalar */ |
[017] |
c-double-quote ::= '"' |
/* indicates a double quoted scalar */ |
[018] |
c-throwaway ::= '#' |
/* indicates a throwaway comment */ |
[019] |
c-directive ::= '%' |
/* indicates a directive */ |
[020] |
c-reserved ::= '@' | '`' |
/* reserved for future use */ |
The Unicode standard defines several line break characters. These line breaks can be grouped into two categories. Specific line breaks have well-defined semantics for breaking text into lines and paragraphs. The semantics of generic line break characters is not defined beyond "ending a line".
[021] |
b-line-feed ::= #xA |
/* ASCII line feed (LF) */ |
[022] |
b-carriage-return ::= #xD |
/* ASCII carriage return (CR) */ |
[023] |
b-next-line ::= #x85 |
/* Unicode next line (NEL) */ |
[024] |
b-line-separator ::= #x2028 |
/* Unicode line separator (LS) */ |
[025] |
b-paragraph-separator ::= #x2029 |
/* Unicode paragraph separator (PS) */ |
[026] |
b-char ::=
b-line-feed
| b-carriage-return
| b-next-line
| b-line-separator
| b-paragraph-separator |
/* line break characters */ |
[027] |
b-generic ::=
( b-carriage-return
b-line-feed )greedy
| b-carriage-return
| b-line-feed
| b-next-line |
/* line break with non-specific semantics */ |
[028] |
b-specific ::=
b-line-separator
| b-paragraph-separator |
/* line break with specific semantics */ |
[029] |
b-any ::= b-generic | b-specific |
/* any non-content line break */ |
Outside scalar text content, YAML allows any line break to be used to terminate lines, and in most cases also allows such line breaks to be preceded by trailing comment characters. On output, a YAML emitter is free to emit such line breaks using whatever convention is most appropriate. An emitter should avoid emitting trailing line spaces.
This section includes several common character range definitions.
[030] |
nb-char ::= c-printable - b-char |
/* characters valid in a line */ |
[031] |
s-char ::= #x9 | #x20 |
/* white space valid in a line */ |
[032] |
ns-char ::= nb-char - s-char |
/* non-space characters valid in a line */ |
[033] |
ns-ascii-letter ::= [#x41-#x5A] | [#x61-#x7A] |
/* ASCII letters, A-Z or a-z */ |
[034] |
ns-decimal-digit ::= [#x30-#x39] |
/* 0-9 */ |
[035] |
ns-hex-digit ::=
ns-decimal-digit
| [#x41-#x46] | [#x61-#x66] |
/* 0-9, A-F or a-f */ |
[036] |
ns-word-char ::=
ns-decimal-digit
| ns-ascii-letter | '-' |
/* characters valid in a word */ |
YAML streams use lines and spaces to convey structure. This requires special processing rules for white space (space and tab).
In a YAML text representation, structure is determined from indentation, where indentation is defined as a line break character followed by zero or more space characters.
Tab characters are not allowed in indentation. Since different systems treat tabs differently, portability problems are a concern. Therefore, YAML's tab policy is conservative; they are not allowed. Note that most modern editors may be configured so that pressing the tab key results in the insertion of an appropriate number of spaces.
With one notable exception, a node must be more indented than its parent node. All sibling nodes must use the exact same indentation level. However the content of each such node may be indented independently.
The indentation level is used exclusively to delineate structure. Indentation characters are otherwise ignored. In particular, they are never taken to be a part of the the serialized text.
[037] |
i-spaces(n) ::= #x20 x n |
/* specific level of indentation */ |
[038] |
i-spaces(<n) ::= i-spaces(m) |
/* for some specific m such that m < n */ |
[039] |
i-spaces(<=n) ::= i-spaces(m) |
/* for some specific m such that m <= n */ |
Since the YAML stream depends upon indentation level to delineate blocks, additional productions are a function of an integer, based on the i-spaces(n), i-spaces(<n) and i-spaces(<=n) productions above. In some cases the notation production(any) is used; it is a shorthand for "production(n) for some specific of n such that n >= 0".
The '-' sequence entry indicator is perceived by people to be part of the indentation. Hence the indentation rules are slightly more flexible when dealing with this indicator. First, a block sequence need not be indented relative to its parent node, unless that node is a block sequence entry. For example:
a key in a mapping at indentation level 0: # The value for this key is a block sequence. - This sequence is also at indentation level 0. - Another entry in the sequence. - # The value of this entry is a nested sequence. - This nested sequence must be indented at least to level 1. - Another entry in the nested sequence. - Last entry in block sequence at indentation level 0. second key in mapping: at indentation level 0.
In addition, in the special case when the value of a sequence entry is a block collection, and neither the nested block collection nor its first entry have any properties specified (type family or anchor), then this first entry may be specified in the same line as the '-' indicator of the containing sequence entry. In this case both the '-' and any following spaces are counted as part of the indentation. For example:
- This sequence is not indented.
- map-in-seq: further indented by four.
this key: is also further indented by four.
- - seq-in-seq; further indented by three.
- second entry in nested sequence.
- Last entry in top sequence.
Throwaway comments have no effect whatsoever on the data serialized in the stream. Their usual purpose is to communicate between the human maintainers of the file. A typical example is comments in a configuration file.
A throwaway comment always spans to the end of a line. It consists of white spaces, optionally followed by a '#' indicator and arbitrary comment characters to the end of the line.
Outside text content, empty lines or lines containing only white space are taken to be implicit throwaway comment lines. Lines containing indentation followed by '#' and comment characters are taken to be explicit throwaway comment lines.
A throwaway comment may appear before a document node or following any node. It may not appear inside a scalar node, but may precede or follow it.
[040] |
c-nb-throwaway-comment ::= c-throwaway nb-char* |
/* comment trailing a line */ |
[041] |
l-comment(n) ::=
l-empty-comment(n)
| l-text-comment(n) |
/* types of comment lines */ |
[042] |
l-empty-comment(n) ::= i-spaces(<=n) b-any |
/* empty throwaway comment line */ |
[043] |
l-text-comment(n) ::= i-spaces(<n) c-nb-throwaway-comment b-any |
/* explicit throwaway comment line */ |
[044] |
s-b-trailing-comment ::= ( s-char+ c-nb-throwaway-comment? )? b-any |
/* trailing non-content spaces, comment and line break */ |
###The first tree lines of this stream
## are comments (the second one is empty).
this: | # Comments may trail block indicators.
contains three lines of text.
The third one starts with a
# character. This isn't a comment.
# The last three lines of this stream
# are comments (the first line is empty).
A sequence of bytes is a YAML stream if, taken as a whole, it complies with the following production. Note that an empty stream is a valid YAML stream containing no documents.
Encoding is assumed to be UTF-8 unless explicitly specified by including a byte order mark as the first character of the stream. While a byte order mark may also appear before additional document headers, the same encoding must be used for all documents contained in a YAML stream.
[045] |
c-l-yaml-stream ::= ( c-l-before-document l-l-implicit-document l-l-after-document? )? ( c-l-before-document l-l-explicit-document l-l-after-document? )* |
/* YAML document stream */ |
[046] |
c-l-before-document ::= c-byte-order-mark? #l-comment(any)* |
/* comments before actual document starts */ |
[047] |
l-l-implicit-document ::=
l-l-blk-collection(any)
| l-l-top-flow-collect-node(any) |
/* first document with an implicit header line */ |
[048] |
l-l-explicit-document ::= ns-ns-document-header ( s-l-top-scalar-node(any) | s-l-top-collect-node(any) ) |
/* stream document with an explicit header */ |
A YAML stream may contain several independent YAML documents. A document header line is used to start a new document. This line must start with a document separator: '---' followed by a line break or a sequence of space characters. If no explicit header line is specified at the start of the stream, the parser should behave as if a header line containing an unadorned '---' was specified.
When YAML is used as the format for a communication stream, it is useful to be able to indicate the end of a document independent of starting the next one. Without such a marker, the YAML processor reading the stream would be forced to wait for the header of the next document (that may be long time in coming) in order to detect the end of the previous document.
To support this scenario, a YAML document may be terminated by a '...' line. Nothing but throwaway comments may appear between this line and the (mandatory) header line of the following document.
[049] |
ns-ns-document-header ::= ns-ns-document-start ( s-char+ c-ns-directive )* |
/* YAML document header */ |
[050] |
ns-ns-document-start ::= '-' '-' '-' |
/* YAML document start indicator */ |
[051] |
l-l-after-document ::= ns-ns-document-end b-any l-comment(any)* |
/* YAML document trailer */ |
[052] |
ns-ns-document-end ::= '.' '.' '.' |
/* YAML document end indicator */ |
--- > This YAML stream contains a single text value. The next stream is a log file - a sequence of log entries. Adding an entry to the log is a simple matter of appending it at the end.
--- at: 2001-08-12 09:25:00.00 Z type: GET HTTP: '1.0' url: '/index.html' --- at: 2001-08-12 09:25:10.00 Z type: GET HTTP: '1.0' url: '/toc.html'
# This stream is an example of a top-level mapping. invoice : 34843 date : 2001-01-23 total : 4443.52
# A one-line alternative syntax for the above document. [ invoice: 34843, date: 2001-01-23, total: 4443.52 ]
# The following is a stream of three documents. The first is an empty
# mapping, the second an empty sequence, and the last an empty string.
--- {}
--- [ ]
--- ''
# A communication channel based on a YAML stream. --- sent at: 2002-06-06 11:46:25.10 Z payload: Whatever # Receiver can process this as soon as the following is sent: ... # Even if the next message is sent long after: --- sent at: 2002-06-06 12:05:53.47 Z payload: Whatever ...
Directives are instructions to the YAML parser. Like throwaway comments, directives are not reflected in the data serialized in the stream. Directives apply to a single document. It is an error for the same directive to be specified more than once for the same document.
[053] |
c-ns-directive ::= c-directive ns-ns-directive-name c-mapping-entry ns-ns-directive-value |
/* document directive */ |
[054] |
ns-ns-directive-name ::= ( ns-char - c-mapping-entry )+ |
/* document directive name */ |
[055] |
ns-ns-directive-value ::= ns-char+ |
/* document directive value */ |
This version of YAML defines a single directive, %YAML. Additional directives may be added in future versions of YAML. A parser should ignore unknown directives with an appropriate warning. There is no provision for specifying private directives. This is intentional.
The %YAML directive specifies the version of YAML the document adheres to. This specification defines version 1.0.
A version 1.0 parser should accept documents with an explicit %YAML:1.0 directive, as well as documents lacking a %YAML directive. Documents with a directive specifying a higher minor version (e.g. %YAML:1.1) should be processed with an appropriate warning. Documents with a directive specifying a higher major version (e.g. %YAML:2.0) should be rejected with an appropriate error message.
A text node begins at a particular level of indentation, n, and its content is indented at some level >n. A text node can be a collection (mapping or sequence), a scalar (block or flow) or an alias.
A YAML document is a normal node. However a document can't be an alias (there is nothing it may refer to). Also if the header line is omitted the first document must be a collection.
[056] |
s-l-top-value-node(n) ::=
s-l-top-alias-node
| s-l-top-collect-node(n)
| s-l-top-scalar-node(n) |
/* value node outside flow collection */ |
[057] |
ns-ns-flow-value-node(n) ::=
ns-ns-alias
| c-c-flow-collect-node(n)
| ns-ns-flow-scalar-value-node(n) |
/* value node inside flow collection */ |
[058] |
ns-s-top-key-node(n) ::=
( c-top-key s-l-top-value-node(>n)
i-spaces(n) )
| ( ns-ns-flow-key-node(n) s-char* ) |
/* key node outside flow collection */ |
[059] |
ns-ns-flow-key-node(n) ::=
ns-ns-alias
| c-c-flow-collect-node(n)
| ns-ns-flow-scalar-key-node(n) |
/* key node inside flow collection */ |
[060] |
s-l-top-alias-node ::= s-char ns-ns-alias s-b-trailing-comment l-comment(any)* |
/* alias node outside flow collection */ |
[061] |
l-l-top-flow-collect-node(n) ::= i-spaces(n) c-c-flow-collect-node(n) s-b-trailing-comment l-comment(any)* |
/* top-level (document) flow collection node */ |
[062] |
s-l-top-collect-node(n) ::=
s-l-blk-collect-node(n)
| ( s-s-required(n)
c-c-flow-collect-node(n)
s-b-trailing-comment
l-comment(any)* ) |
/* collection node outside flow collection */ |
[063] |
s-l-blk-collect-node(n) ::= ( s-char+ c-ns-collect-properties )? s-b-trailing-comment l-comment(any)* l-l-blk-collection(n) |
/* collection node in block style */ |
[064] |
c-c-flow-collect-node(n) ::= ( c-ns-collect-properties s-char+ )? c-c-flow-collection(n) |
/* collection node inside flow collection */ |
[065] |
s-l-top-scalar-node(n) ::=
s-l-blk-scalar-node(n)
| ( s-s-required(n)
ns-ns-top-scalar-value-node(n)
s-b-trailing-comment
l-comment(any)* ) |
/* scalar node outside flow collection */ |
[066] |
s-l-blk-scalar-node(n) ::= ( s-char+ c-ns-scalar-properties )? s-char+ c-l-blk-scalar(n) |
/* scalar node in block style */ |
[067] |
ns-ns-top-scalar-value-node(n) ::= ( c-ns-scalar-properties s-char+ )? ns-ns-top-scalar-value(n) |
/* scalar node using flow style outside flow collection */ |
[068] |
ns-ns-flow-scalar-value-node(n) ::= ( c-ns-scalar-properties s-char+ )? ns-ns-flow-scalar-value(n) |
/* scalar value node inside flow collection */ |
[069] |
ns-ns-flow-scalar-key-node(n) ::= ( c-ns-scalar-properties s-char+ )? ns-ns-flow-scalar-key(n) |
/* scalar key node inside flow collection */ |
Each text node may have anchor and transfer method properties. These properties are specified in a properties list appearing before the node value itself. For a top-level node (a document), the properties appear in the document header line, following the directives (if any). It is an error for the same property to be specified more than once for the same node.
[070] |
c-ns-collect-properties ::=
( c-ns-collect-transfer
( s-char+ c-ns-anchor-property )? )
| ( c-ns-anchor-property
( s-char+ c-ns-collect-transfer )? ) |
/* collection properties list */ |
[071] |
c-ns-scalar-properties ::=
( c-ns-scalar-transfer
( s-char+ c-ns-anchor-property )? )
| ( c-ns-anchor-property
( s-char+ c-ns-scalar-transfer )? ) |
/* scalar properties list */ |
The transfer method property specifies how to load the associated node. It includes the type family for the node and, for global scalar type families, an optional specific format used, separated by a '#' character.
Like throwaway comments and directives, formats are not reflected in the data serialized in the stream. In contrast, the type family is considered to be part of this data.
By providing an explicit transfer property to a node, implicit typing is prevented. However, an explicit empty transfer method property can be used to force implicit typing to be applied to a node. If either an empty explicit format or no explicit format are given, the loader automatically detects the format.
implicit integer type family: 12 also implicit integer family: ! "12" explicit integer, implicit format: !int 12 also implicit format: !int# 0x12 explicit format: !int#dec 0x12
YAML makes use of the taguri: scheme for defining URIs for its global type families and the x-private: scheme for its private type families. While these schemes provide the necessary semantics for identifying type families, they are rather verbose.
To increase readability, YAML does not use the full URI notation in the stream. Instead, it provides several shorthand notations for different groups of type family URIs. A parser may choose not to expand shorthand type family names to URIs. However, in such a case the parser must still perform escaping to ensure a single unique representation of each type family name.
If the type family begins with a '!' character, it is taken to be a private type family whose URI is under the x-private: scheme. URI fragments are allowed but their semantics is completely up to the semantics of the private type. In particular, they may or may not indicate a format.
# Both examples below make use of the 'x-private:ball'
# type family URI, but with different semantics.
---
pool: !!ball { number: 8 }
---
bearing: !!ball { material: steel }
If the type family contains no ':' and no '/' characters it is assumed to be defined under the yaml.org domain. This domain is used to define the core and universal YAML data types.
# The URI is 'taguri:yaml.org,2002:str' - !str a Unicode string
Otherwise, if the type family begins with a single word, followed by a '/' character, it is assumed to belong to a sub-domain of yaml.org. Each domain vocabulary.yaml.org will include all globally unique types of the vocabulary that aren't covered by the set of universal types. Each vocabulary would contain a set of related types, for example types specific to a particular programming language.
Globally unique types for each language include any built-in types and any standard library types. For languages such as Java and C#, all type names based on reverse DNS strings are globally unique. For languages such as Perl, that has a central authority (CPAN) for managing the global namespace, all the types sanctioned by the central authority are globally unique. The list of supported languages and their types is maintained as part of the YAML type repository.
# The URI is 'taguri:perl.yaml.org,2002:Text::Tabs'
- !perl/Text::Tabs {}
Otherwise, the type family must begin with a domain name and a date (separated by a ',' character), followed by a '/' character. In this case it is taken to be defined under the specified domain and date.
# The URI is 'taguri:clarkevans.com,2003-02:timesheet' - !clarkevans.com,2003-02/timesheet
Type families defined in the yaml.org domain or any of its sub-domains must be defined using the appropriate specialized shorthand rather than using the generic domain syntax. This ensures each type family has a unique representation as a shorthand, in addition to having a unique representation as a URI.
YAML allows non-printable Unicode characters to be used in a transfer method using escape sequences.
# The following values have the same type family. - !domain.tld,2002/type\x30 value - !domain.tld,2002/type0 value
Sometimes it may be helpful for a YAML type family or transfer method to be expanded to a full URI. A YAML processor may provide a mechanism to perform such expansion. Since URIs support a limited ASCII-based character set, this expansion requires all characters outside this set to be encoded in UTF-8 and the resulting bytes to be encoded using % notation.
When an explicit % character appears in a transfer method, it is passed to the URI form unchanged, allowing explicit % escapes to be used in the transfer method where necessary. It is an error for a transfer method not to have a valid expanded URI format (e.g., contain an invalid explicit % escape sequence).
# The following are different as far as YAML is concerned. - !domain.tld,2002/type%30 value - !domain.tld,2002/type0 value
YAML provides convenient shorthand for the common case where a node and (most of) its descendents have global types families whose shorthand forms share a common prefix. For this case, YAML allows using the '^' character to separate the ancestor node's type family into a prefix and a suffix. The parser does not consider the separator to be part of type family name.
When the parser encounters a descendant node whose type family name begins with '^', it appends the ancestor node's prefix to it. Again the '^' character is not taken to be part of the name.
It is possible for a descendant node to establish a different prefix. In this case the node may not make use of its ancestor's node prefix. It must specify a full type family name, separated into a prefix and suffix as above.
It is an error for a node's type family name to begin with '^' unless it has an ancestor node establishing a prefix. However, a node may establish a prefix even if none of its descendents make use of it.
Note that the type prefix mechanism is purely syntactical and does not imply any additional semantics. In particular, the prefix must not be assumed to be an identifier for anything.
# 'taguri:domain.tld,2002:invoice' is some type family.
invoice: !domain.tld,2002/^invoice
# 'seq' is shorthand for 'taguri:yaml.org,2002:seq'.
# This does not effect '^customer' below
# because it is does not specify a prefix.
customers: !seq
# '^customer' is shorthand for the full notation
# '!domain.tld,2002/customer' that stands for the
# URI 'taguri:domain.tld,2002:customer'.
- !^customer
given : Chris
family : Dumars
[072] |
c-prefix ::= '^' |
/* separates prefix from type */ |
[073] |
c-format ::= '#' |
/* separates type from format */ |
[074] |
ns-transfer-char ::=
ns-esc-sequence
| ( ns-char - c-escape - c-format ) |
/* characters valid in a transfer metrhod */ |
[075] |
ns-mundane-transfer-char ::= ns-transfer-char - ':' - '/' |
/* non-magical URI character */ |
[076] |
c-ns-collect-transfer ::= c-transfer ( /* empty (implicit) */ | ns-ns-transfer-family | ( prefix-of-above? c-prefix suffix-of-above ) ) |
/* collection transfer method (no format) */ |
[077] |
c-ns-scalar-transfer ::= c-transfer ( /* empty (implicit) */ | ns-ns-transfer-family | ns-ns-transfer-format | ( prefix-of-above? c-prefix suffix-of-above ) ) |
/* scalar transfer method (with format) */ |
[078] |
ns-ns-transfer-family ::= c-ns-private-family ns-ns-global-family |
/* family transfer method (no format) */ |
[079] |
ns-ns-transfer-format ::= ns-ns-transfer-family c-format ns-ns-format |
/* transfer method (with format) */ |
[080] |
c-ns-private-family ::= c-transfer ns-transfer-char+ |
/* private type names */ |
[081] |
ns-ns-global-family ::=
ns-ns-core-family
| ns-ns-vocabulary-family
| ns-ns-domain-family |
/* global type names */ |
[082] |
ns-ns-format ::= ns-transfer-char* |
/* format of a scalar */ |
[083] |
ns-ns-core-family ::= ( ns-mundane-transfer-char - c-transfer ) ns-mundane-transfer-char* |
/* shorthand for taguri:yaml.org,2002:type names */ |
[084] |
ns-ns-vocabulary-family ::= ns-word-char+ '/' ns-transfer-char* |
/* shorthand for taguri:vocabulary.yaml.org,2002:type names */ |
[085] |
ns-ns-domain-family ::=
ns-word-char+
( '.' ns-word-char |
/* shorthand for taguri:domain,date:type names */ |
[086] |
ns-ns-domain-year ::= ns-decimal-digit x 4 |
/* type family domain ownership year */ |
[087] |
ns-ns-domain-day-month ::= ns-decimal-digit x 2 |
/* type family domain ownership day or month (01 by default) */ |
An anchor is a property that can be used to mark a node for future reference. An alias node can then be used to indicate additional inclusions of an anchored node by specifying the node's anchor.
[088] |
c-ns-anchor-property ::= c-anchor ns-ns-anchor-name |
/* associates an anchor with a given node */ |
[089] |
ns-ns-anchor-name ::= ns-char+ |
/* unique anchor name */ |
An alias node does not directly exist in the data serialized in the stream. Instead, it represents a second occurence of the data represented by the anchored node. The first occurence of the node must be marked by an anchor to allow additional occurences to be represented as alias nodes.
An alias refers to the most recent preceding node having the same anchor. It is an error to have an alias use an anchor that does not occur previously in the serialization of the document. It is not an error to have an anchor that is not used by any alias node.
[090] |
ns-ns-alias ::= c-alias ns-ns-anchor-name |
/* alias of a preceding anchored node */ |
anchor : &A001 This scalar has an anchor. override : &A001 The alias node below is a repeated use of this value. alias : *A001
Collection nodes come in two kinds, sequence and mapping. Each kind has two styles, block and flow. Block styles begin on the next line and use indentation for internal structure. Flow collection styles start on the current line, may span multiple lines, and rely on indicators to represent internal structure.
[091] |
l-l-blk-collection(n) ::=
l-l-blk-sequence(n)
| l-l-blk-mapping(n) |
/* block collection node styles */ |
[092] |
c-c-flow-collection(n) ::=
c-c-flow-sequence(n)
| c-c-flow-mapping(n) |
/* flow collection node styles */ |
To enable line spanning in flow collections, wherever tokens may be separated by white space, it is possible to end the line (with an optional throwaway comment) and continue the collection in the next line. Line spanning functionality is indicated by the use of the s-s-optional(n) space and the s-s-required(n) space productions.
[093] |
s-s-optional(n) ::=
s-char*
| ( s-b-trailing-comment
i-spaces(n) s-char+ ) |
/* optional white space separating tokens */ |
[094] |
s-s-required(n) ::=
s-char+
| ( s-b-trailing-comment
i-spaces(n) s-char+ ) |
/* required white space separating tokens */ |
A sequence node is the simplest node kind. It is a an ordered collection of sub-nodes at a higher indentation level. A flow style is available for short, simple sequences. Also, if a sub-sequence node has no properties, and its first entry is specified without any properties, the sub-sequence node may immediately follow the sequence entry indicator.
[095] |
l-l-blk-sequence(n) ::= ( i-spaces(n[-1]) c-l-blk-seq-entry(n[-1]) )+ |
/* block sequence node; -1 unless the block sequence is the value of an entry of a parent block sequence */ |
[096] |
c-l-blk-seq-entry(n) ::= c-sequence-entry ( s-l-top-value-node(>n) | i-l-seq-in-seq(n) | i-l-map-in-seq(n) ) |
/* block sequence node entry */ |
[097] |
i-l-seq-in-seq(n) ::= i-spaces(m) c-l-blk-seq-entry(n+m+1) l-l-blk-sequence(n+m+1)? |
/* sequence node with no properties in a sequence entry (where m > 0) */ |
[098] |
c-c-flow-sequence(n) ::= c-sequence-start s-s-optional(n) ( ns-ns-flow-value-node(n) s-s-optional(n) ( c-collect-entry s-s-required(n) ns-ns-flow-value-node(n) s-s-optional(n) )* )? c-sequence-end |
/* flow sequence node */ |
empty: []
flow: [ one, two, three # May span lines,
, four, # indentation is
five ] # mostly ignored.
block:
- Note indicator is not indented.
-
- Subordinate sequence entry (note must be indented).
- Another entry in subordinate sequence
- - Another way to write a sub-sequence
- Another entry in sub-sequence
- >
A folded sequence entry (fifth entry)
A mapping node is an unordered association of unique keys with values. It is an error for two equal key entries to appear in the same mapping node. In such a case the processor may continue, ignoring the second key and issuing an appropriate warning. This strategy preserves a consistent information model for streaming and random access applications.
A flow form is available for short, simple mapping nodes. Also, if a mapping node has no properties, and its first key is specified as a flow scalar without any properties, this first key may immediately follow the sequence entry indicator.
[099] |
l-l-blk-mapping(n) ::= ( i-spaces(n) ns-l-blk-map-entry(n) )+ |
/* block mapping node */ |
[100] |
i-l-map-in-seq(n) ::= i-spaces(m) ns-ns-flow-scalar-key(n+m+1) s-char* c-mapping-entry s-l-top-value-node(>n+m+1) l-l-blk-mapping(n+m+1)? |
/* mapping node with no properties in a sequence entry (where m > 0) */ |
[101] |
ns-l-blk-map-entry(n) ::= ns-s-top-key-node(n) c-mapping-entry s-l-top-value-node(>n) |
/* single key:value pair */ |
[102] |
c-c-flow-mapping(n) ::= c-mapping-start s-s-optional(n) ( ns-ns-flow-map-entry(n) s-s-optional(n) ( c-collect-entry s-s-required(n) ns-ns-flow-map-entry(n) s-s-optional(n) )* )? c-mapping-end |
/* flow mapping node */ |
[103] |
ns-ns-flow-map-entry(n) ::= ns-ns-flow-key-node(n) s-char* c-mapping-entry s-s-required(n) ns-ns-flow-value-node(n) |
/* flow key:value pair */ |
empty: {}
flow: { one: 1, two: 2 }
spanning: { one: 1,
two: 2 }
block:
key : value
nested mapping:
key: Subordinate mapping
nested sequence:
- Subordinate sequence
!float 12 : This key is a float.
"\a" : This key had to be escaped.
? '?'
: This key had to be quoted.
? >
This is a multi
line folded key
: Whose value is
also multi-line.
? this also works as a key
: with a value at the next line.
?
- This key
- is a sequence
:
- With a sequence value.
?
This: key
is a: mapping
:
with a: mapping value.
---
- A key: value pair in a sequence.
A second: key:value pair.
- The previous entry is equal to the following one.
-
A key:
value pair in a sequence.
A second:
key:value pair.
While most of the document productions are fairly strict, the scalar production is generous. It offers three flow style variants and two block style variants to choose from, depending upon the readability requirements.
Throwaway comments may follow a scalar node, but may not appear inside one. The comment lines following a block scalar node must be less indented than the block scalar value. Empty lines in a scalar node that are followed by a non-empty content line are interpreted as content rather than as implicit comments. Such lines may be less indented than the text content.
[104] |
c-l-blk-scalar(n) ::=
c-l-literal(n)
| c-l-folded(n) |
/* block scalar styles */ |
[105] |
ns-ns-top-scalar-value(n) ::=
c-c-single-quoted(n)
| c-c-double-quoted(n)
| ns-ns-plain-top-value(n) |
/* flow scalar value styles outside flow collection */ |
[106] |
ns-ns-flow-scalar-value(n) ::=
c-c-single-quoted(n)
| c-c-double-quoted(n)
| ns-ns-plain-flow-value(n) |
/* flow scalar value styles inside flow collection */ |
[107] |
ns-ns-flow-scalar-key(n) ::=
c-c-single-quoted(n)
| c-c-double-quoted(n)
| ns-ns-plain-key |
/* flow scalar key styles */ |
Inside all scalar nodes, a compliant YAML parser must translate the two-character combination CR LF, any CR that is not followed by an LF, and any NEL into a single LF (this does not apply to escaped characters). LS and PS characters are preserved. These rules are compatible with Unicode's newline guidelines.
Normalization functionality is indicated by the use of the b-as-line-feed production defined below.
[108] |
b-as-line-feed ::= b-generic |
/* line break converted to a line feed */ |
[109] |
b-normalized ::= b-as-line-feed | b-specific |
/* a normalized end of line marker */ |
On output, a YAML emitter is free to serialize end of line markers using whatever convention is most appropriate, though again LS and PS must be preserved.
Each block scalar may have explicit indentation and chomping modifiers. These modifiers are specified following the block style indicator. It is an error for the same modifier to be specified more than once for the same node.
[110] |
ns-ns-blk-modifiers ::=
( ns-explicit-indent
c-chomp-control? )
| ( c-chomp-control
ns-explicit-indent? ) |
/* block scalar modifiers */ |
Typically the indentation level of a block scalar node is detected from its first non-empty content line. This detection fails when this first non-empty line contains leading white space characters. Note that content lines, including the first non-empty content line, may begin with a '#' character.
When the first non-empty content line begins with spaces, YAML requires that the indentation level for the scalar node text content be given explicitly. This level is specified as the integer number of the additional indentation spaces used for the text content.
If the block scalar begins with lines containing only spaces, and no explicit indentation is given, the parser assumes such lines are empty lines. It is an error for any such leading empty line to contain more spaces than the indentation level that is deduced from the first non-empty content line.
The indentation level is always non-zero, except for the top level node of each document. This node is commonly indented by zero spaces (not indented). Note that in this case, all lines up to the next document seperator are assumed to be content lines, even if they begin with a '#' character.
It is always valid to specify an explicit indentation level, though emitters should not do so in cases where detection succeeds. It is an error for detection to fail when there is no explicit indentation specified.
[111] |
ns-explicit-indent ::= ns-decimal-digit |
/* explicit additional indentation level */ |
# Explicit indentation must be given
# in both the following cases.
leading spaces: |2
This value starts with four spaces.
leading spaces after empty lines: |2
This value starts with four spaces.
# The following is valid:
leading comment indicator: |
# Content line starts with a '#'
character, and follows empty lines.
# This is a comment because it is not
# more indented than the base level.
# Since blocks may not contain comments,
# this ends the block and the following
# empty line is not a content line.
# Explicit indentation may
# also be given when it is
# not required.
redundant: |2
This value is indented 2 spaces.
# Indentation applies to top level nodes.
--- |
Usually top level nodes are not indented.
--- |
This text is indented two spaces.
It contains no leading spaces.
--- |0
This text contains two leading spaces.
---
This text is not indented, so
# this is a content line and
--- |
However, this is indented two spaces
# So this is a comment ending the block.
Typically the final line break of a block scalar is considered to be a part of its value, and any trailing empty lines are taken to be comment lines. This default "clip" chomping behavior can be overriden by specifying a chomp control modifier.
[112] |
c-chomp-control ::=
c-strip-chomp
| c-keep-chomp |
/* override the default "clip" chomping */ |
[113] |
c-strip-chomp ::= '-' |
/* strip final line break from value */ |
[114] |
c-keep-chomp ::= '+' |
/* keep trailing line breaks in value */ |
-')-' chomp control specifies that the final line break character of the block scalar should be stripped from its value.
+')+' chomp control specifies that any trailing empty lines following the block scalar should be considered to be a part of its value. If this modifier is not specified, such lines are considered to be empty throwaway comment lines and are ignored.
When this functionality is implied, the l-l-empty-trailing(n) production will be used.
[115] |
l-l-empty-trailing(n) ::=
l-empty-comment(n)+
| l-blk-empty-line-feed(n)+ |
/* trailing line feeds or comment lines, depending on chomp control) */ |
[116] |
l-blk-empty-line-feed(n) ::= i-spaces(<=n) b-as-line-feed |
/* empty block line */ |
clipped: |
This has one newline.
same as "clipped" above: "This has one newline.\n"
stripped: |-
This has no newline.
same as "stripped" above: "This has no newline."
kept: |+
This has two newlines.
same as "kept" above: "This has two newlines.\n\n"
A literal scalar is the simplest scalar form. No processing is performed on literal scalar characters aside from end of line normalization and stripping away the indentation. Indentation is detected from the first content line. Explicit indentation must be specified in case this yields the wrong result.
This restricts literal scalars to printable characters only. Also, long lines can't be broken. In exchange for these restrictions, a literal scalar may use any printable character, including line breaks. This makes literal scalars the most readable format for source code or other text values with significant use of indicators, quotes, escape sequences, and line breaks.
[117] |
c-l-literal(n) ::= c-literal ns-ns-blk-modifiers? s-b-trailing-comment l-l-literal-value(n)? l-l-empty-trailing(n)? ( l-text-comment(<n) l-comment(any)* )? |
/* literal scalar */ |
[118] |
l-l-literal-value(n) ::= l-l-literal-chunk(n)+ |
/* value of literal scalar */ |
[119] |
l-l-literal-chunk(n) ::= l-blk-empty-line-feed(n)* ( l-literal-text(n) | l-blk-empty-specific(n) ) |
/* chunk of literal scalar lines */ |
[120] |
l-blk-empty-specific(n) ::= i-spaces(<=n) b-specific |
/* empty block line with preserved specific line break */ |
[121] |
l-literal-text(n) ::= i-spaces(n) nb-char+ b-normalized |
/* literal line character data */ |
empty: |
literal: |
The \ ' " characters may be
freely used. Leading white
space is significant.
Line breaks are significant. Thus this value
contains one empty line and ends with a single
line break, but does not start with one.
is equal to: "The \\ ' \" characters may \
be\nfreely used. Leading white\n space \
is significant.\n\nLine breaks are \
significant. Thus this value\ncontains \
one empty line and ends with a single\nline \
break, but does not start with one.\n"
# Comments may follow a block scalar value.
# They must be less indented.
# Modifiers may be combined in any order.
indented and chomped: |2-
This has no newline.
also written as: |-2
This has no newline.
both are equal to: " This has no newline."
When folding is done, a single normalized line feed is converted to a single space (#x20). When two or more consecutive (possibly indented) normalized line feeds are encountered, the parser does not convert them into spaces. Instead, the parser ignores the first of the line feeds and preserves the rest. Thus a single line feed can be serialized as two, two line feeds can be serialized as three, etc.
When folding is done, specific line breaks are preserved and may be safely used to convey text structure.
Block scalars are based on indentation to convey structure. Hence leading white space in block scalar lines is always significant. Folding block scalars builds on this fact to offer powerful and intuitive semantics.
In block scalars, folding only applies to line feeds that separate text lines starting with a non-space character. Hence, folding does not apply to leading line feeds, line feeds surrounding an empty line ending with a specific line break, or line feeds surrounding a text line that starts with a space character.
The combined effect of the processing rules above is that each "paragraph" is interpreted as a single line, empty lines are used to represent a line feed, and "more indented" lines are preserved. Also, specific line breaks may be safely used to indicate text structure.
[122] |
b-as-space ::= b-generic |
/* line feed converted to a space */ |
[123] |
b-ignored ::= b-generic |
/* ignored line feed */ |
[124] |
b-l-blk-trimmed(n) ::= b-ignored l-blk-empty-line-feed(n)+ |
/* sequence of line feeds in block scalar */ |
Flow scalars depend on explicit indicators to convey structure, rather than indentation. Hence, in such scalars, all line space preceding or following a line break is not considered to be part of the scalar value. Hence folding flow scalars provides a more relaxed, less powerful semantics. In flow scalars, all leading and trailing white space is stripped from each line. All generic line breaks are folded (even if the line was "more indented").
The combined effect of these processing rules is that each "paragraph" is interpreted as a single line, empty lines are used to represent a line feed, and text can be freely "indented" without affecting the scalar value. Again, specific line breaks may be safely used to indicate text structure.
[125] |
i-s-ignored-leading(n) ::= i-spaces(n) s-char+ |
/* ignored spaces at start of flow scalar line */ |
[126] |
s-s-ignored-trailing ::= s-char+ |
/* ignored spaces at end of flow scalar line */ |
[127] |
l-flow-empty-specific(n) ::= ( i-spaces(<=n) | i-s-ignored-leading(n) ) b-specific |
/* empty flow line with preserved specific line break */ |
[128] |
l-flow-empty-line-feed(n) ::= ( i-spaces(<=n) | i-s-ignored-leading(n) ) b-as-line-feed |
/* empty flow line with line break normalized to line feed */ |
[129] |
b-l-flow-trimmed(n) ::= b-ignored l-flow-empty-line-feed(n)+ |
/* sequence of line feeds in flow scalar */ |
[130] |
s-l-end-flow-line(n) ::= s-s-ignored-trailing ( b-as-space | b-l-flow-trimmed(n) | b-specific ) |
/* end of a line in a multi-line flow scalar */ |
A folded scalar is similar to a literal scalar. However, unlike a literal scalar, a folded scalar is subject to (block) line folding. This allows long lines to be broken anywhere a space character (#x20) appears, at the cost of requiring an empty line to represent each line feed character.