@@ -206,7 +206,7 @@ const context = {
206206};
207207```
208208
209- ### [ compact] ( http ://json-ld.org/spec/latest/json-ld/#compacted-document-form)
209+ ### [ compact] ( https ://json-ld.org/spec/latest/json-ld/#compacted-document-form)
210210
211211``` js
212212// compact a document according to a particular context
@@ -226,7 +226,7 @@ const compacted = await jsonld.compact(
226226 ' http://example.org/doc' , ' http://example.org/context' , ... );
227227```
228228
229- ### [ expand] ( http ://json-ld.org/spec/latest/json-ld/#expanded-document-form)
229+ ### [ expand] ( https ://json-ld.org/spec/latest/json-ld/#expanded-document-form)
230230
231231``` js
232232// expand a document, removing its context
@@ -243,15 +243,15 @@ const expanded = await jsonld.expand(compacted);
243243const expanded = await jsonld .expand (' http://example.org/doc' , ... );
244244```
245245
246- ### [ flatten] ( http ://json-ld.org/spec/latest/json-ld/#flattened-document-form)
246+ ### [ flatten] ( https ://json-ld.org/spec/latest/json-ld/#flattened-document-form)
247247
248248``` js
249249// flatten a document
250250const flattened = await jsonld .flatten (doc);
251251// output has all deep-level trees flattened to the top-level
252252```
253253
254- ### [ frame] ( http ://json-ld.org/spec/latest/json-ld-framing/#introduction)
254+ ### [ frame] ( https ://json-ld.org/spec/latest/json-ld-framing/#introduction)
255255
256256``` js
257257// frame a document
@@ -384,7 +384,7 @@ Source
384384The source code for the JavaScript implementation of the JSON-LD API
385385is available at:
386386
387- http ://github.com/digitalbazaar/jsonld.js
387+ https ://github.com/digitalbazaar/jsonld.js
388388
389389Tests
390390-----
0 commit comments