File tree 4 files changed +4
-149
lines changed 4 files changed +4
-149
lines changed Original file line number Diff line number Diff line change 166
166
- ** BREAKING** : Remove deprecated ` loadDocument ` API and obsolete
167
167
` DocumentCache ` .
168
168
- ** BREAKING** : Remove deprecated support for parsing legacy dataset format.
169
+ - ** BREAKING** : RDFa parser moved to ` jsonld-rdfa ` package.
169
170
170
171
## 1.8.1 - 2019-10-24
171
172
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ const IdentifierIssuer = util.IdentifierIssuer;
40
40
const JsonLdError = require ( './JsonLdError' ) ;
41
41
const LRU = require ( 'lru-cache' ) ;
42
42
const NQuads = require ( './NQuads' ) ;
43
- const Rdfa = require ( './Rdfa' ) ;
44
43
45
44
const { expand : _expand } = require ( './expand' ) ;
46
45
const { flatten : _flatten } = require ( './flatten' ) ;
@@ -989,9 +988,6 @@ jsonld.unregisterRDFParser = function(contentType) {
989
988
jsonld . registerRDFParser ( 'application/n-quads' , NQuads . parse ) ;
990
989
jsonld . registerRDFParser ( 'application/nquads' , NQuads . parse ) ;
991
990
992
- // register the RDFa API RDF parser
993
- jsonld . registerRDFParser ( 'rdfa-api' , Rdfa . parse ) ;
994
-
995
991
/* URL API */
996
992
jsonld . url = require ( './url' ) ;
997
993
Original file line number Diff line number Diff line change 35
35
"object.fromentries" : " ^2.0.2" ,
36
36
"rdf-canonize" : " ^2.0.1" ,
37
37
"request" : " ^2.88.0" ,
38
- "semver" : " ^6.3.0" ,
39
- "xmldom" : " 0.1.19"
38
+ "semver" : " ^6.3.0"
40
39
},
41
40
"devDependencies" : {
42
41
"@babel/cli" : " ^7.7.5" ,
86
85
},
87
86
"keywords" : [
88
87
" JSON" ,
89
- " Linked Data" ,
90
88
" JSON-LD" ,
89
+ " Linked Data" ,
91
90
" RDF" ,
92
91
" Semantic Web" ,
93
92
" jsonld"
124
123
"jsonld-request" : false ,
125
124
"request" : false ,
126
125
"url" : false ,
127
- "util" : false ,
128
- "xmldom" : false
126
+ "util" : false
129
127
}
130
128
}
You can’t perform that action at this time.
0 commit comments