You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an implementation of [YAML](http://yaml.org/), a human-friendly data
11
-
serialization language. Started as [PyYAML](http://pyyaml.org/) port, it was
10
+
This is an implementation of [YAML](https://yaml.org/), a human-friendly data
11
+
serialization language. Started as [PyYAML](https://pyyaml.org/) port, it was
12
12
completely rewritten from scratch. Now it's very fast, and supports 1.2 spec.
13
13
14
14
@@ -81,11 +81,11 @@ options:
81
81
Loader will call this function with an instance of `YAMLException` for each warning.
82
82
-`schema`_(default: `DEFAULT_SCHEMA`)_ - specifies a schema to use.
83
83
-`FAILSAFE_SCHEMA` - only strings, arrays and plain objects:
84
-
http://www.yaml.org/spec/1.2/spec.html#id2802346
84
+
https://www.yaml.org/spec/1.2/spec.html#id2802346
85
85
-`JSON_SCHEMA` - all JSON-supported types:
86
-
http://www.yaml.org/spec/1.2/spec.html#id2803231
86
+
https://www.yaml.org/spec/1.2/spec.html#id2803231
87
87
-`CORE_SCHEMA` - same as `JSON_SCHEMA`:
88
-
http://www.yaml.org/spec/1.2/spec.html#id2804923
88
+
https://www.yaml.org/spec/1.2/spec.html#id2804923
89
89
-`DEFAULT_SCHEMA` - all supported YAML types.
90
90
-`json`_(default: false)_ - compatibility with JSON.parse behaviour. If true, then duplicate keys in a mapping will override values rather than throwing an error.
91
91
@@ -183,8 +183,8 @@ Supported YAML types
183
183
--------------------
184
184
185
185
The list of standard YAML tags and corresponding JavaScript types. See also
186
-
[YAML tag discussion](http://pyyaml.org/wiki/YAMLTagDiscussion) and
187
-
[YAML types repository](http://yaml.org/type/).
186
+
[YAML tag discussion](https://pyyaml.org/wiki/YAMLTagDiscussion) and
0 commit comments