├── .editorconfig ├── .github └── workflows │ └── add_prs_and_issues_to_project.yml ├── .gitignore ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── common ├── common.js ├── jsonld.js ├── terms.html └── typographical-conventions.html ├── index.html └── w3c.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/add_prs_and_issues_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/.github/workflows/add_prs_and_issues_to_project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | *~ 3 | .DS_Store 4 | .cache 5 | .project 6 | .settings 7 | .vscode 8 | TAGS 9 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/README.md -------------------------------------------------------------------------------- /common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/common/common.js -------------------------------------------------------------------------------- /common/jsonld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/common/jsonld.js -------------------------------------------------------------------------------- /common/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/common/terms.html -------------------------------------------------------------------------------- /common/typographical-conventions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/common/typographical-conventions.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/index.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-ld/cbor-ld-spec/HEAD/w3c.json --------------------------------------------------------------------------------