• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

test_files/H07-May-2022-18,42217,684

.gitignoreH A D18-Apr-20176 21

README.mdH A D18-Apr-2017544 147

api.goH A D18-Apr-20175.5 KiB203130

compact_test.goH A D18-Apr-201712.2 KiB411335

compactionApi.goH A D18-Apr-201722 KiB786610

consts.goH A D18-Apr-2017888 2723

context.goH A D18-Apr-20177.8 KiB276191

contextApi.goH A D18-Apr-201711 KiB429340

documentLoader.goH A D18-Apr-2017931 4236

error.goH A D18-Apr-20172.8 KiB5247

expand_test.goH A D18-Apr-201710.5 KiB382295

expansionApi.goH A D18-Apr-201715.7 KiB558448

flatten_test.goH A D18-Apr-20177 KiB278228

flatteningApi.goH A D18-Apr-20178.5 KiB318250

fromRDF_test.goH A D18-Apr-20173.4 KiB12095

graph.goH A D18-Apr-2017692 4334

jsonUtils.goH A D18-Apr-2017420 2521

jsonldApi.goH A D18-Apr-201790.7 KiB2,0421

main.goH A D18-Apr-201735 63

normlizeUtils.goH A D18-Apr-201726.5 KiB5571

options.goH A D18-Apr-2017844 3825

processor.goH A D18-Apr-201721.6 KiB5691

rdf.goH A D18-Apr-20171.3 KiB6451

rdfDataset.goH A D18-Apr-20175.5 KiB223205

rdfDatasetUtils.goH A D18-Apr-2017513 2312

regex.goH A D18-Apr-20174.1 KiB6554

regex_test.goH A D18-Apr-2017926 4134

remoteDocument.goH A D18-Apr-2017463 2319

serializationApi.goH A D18-Apr-201713.1 KiB510400

tagsH A D18-Apr-201712.9 KiB149148

term.goH A D18-Apr-20175.5 KiB194116

toRDF_test.goH A D18-Apr-201714.2 KiB527390

triple.goH A D18-Apr-20172.1 KiB6836

uniqueNamer.goH A D18-Apr-2017685 4031

urlUtils.goH A D18-Apr-20171.3 KiB7165

utils.goH A D18-Apr-20175.3 KiB274241

README.md

1# gojsonld
2
3gojsonld is a library that implements support for the JSON-LD format in the Go programming languages and implements all of the algorithms specified by the JSON-LD processing API (http://www.w3.org/TR/json-ld-api/).
4
5## Using gojsonld
6
7The public API methods are located in the api.go file, along with more relevant documentation.
8
9## Test suite
10
11This library passes all the test in the most recent test suite for JSON-LD, located at http://json-ld.org/test-suite/
12
13In order to run the tests, type go test in the gojsonld directory.
14