Skip to content

Commit 0d3ca7a

Browse files
README.md: HTTP => HTTPS (#678)
1 parent 49baadd commit 0d3ca7a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ JS-YAML - YAML 1.2 parser / writer for JavaScript
44
[![CI](https://github.com/nodeca/js-yaml/workflows/CI/badge.svg?branch=master)](https://github.com/nodeca/js-yaml/actions)
55
[![NPM version](https://img.shields.io/npm/v/js-yaml.svg)](https://www.npmjs.org/package/js-yaml)
66

7-
__[Online Demo](http://nodeca.github.io/js-yaml/)__
7+
__[Online Demo](https://nodeca.github.io/js-yaml/)__
88

99

10-
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
1212
completely rewritten from scratch. Now it's very fast, and supports 1.2 spec.
1313

1414

@@ -81,11 +81,11 @@ options:
8181
Loader will call this function with an instance of `YAMLException` for each warning.
8282
- `schema` _(default: `DEFAULT_SCHEMA`)_ - specifies a schema to use.
8383
- `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
8585
- `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
8787
- `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
8989
- `DEFAULT_SCHEMA` - all supported YAML types.
9090
- `json` _(default: false)_ - compatibility with JSON.parse behaviour. If true, then duplicate keys in a mapping will override values rather than throwing an error.
9191

@@ -183,8 +183,8 @@ Supported YAML types
183183
--------------------
184184

185185
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
187+
[YAML types repository](https://yaml.org/type/).
188188

189189
```
190190
!!null '' # null

0 commit comments

Comments
 (0)