Fix IRIRef defintions
Literal `"` is not allowed in an IRIRef. Fix this.
This commit is contained in:
parent
cce0f88803
commit
d7e4aff72d
2 changed files with 4 additions and 2 deletions
|
|
@ -73,7 +73,8 @@
|
||||||
;
|
;
|
||||||
|
|
||||||
IRIREF = '<' (
|
IRIREF = '<' (
|
||||||
'!' .. ';'
|
'!'
|
||||||
|
| '#' .. ';'
|
||||||
| '='
|
| '='
|
||||||
| '?' .. '['
|
| '?' .. '['
|
||||||
| ']'
|
| ']'
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,8 @@
|
||||||
;
|
;
|
||||||
|
|
||||||
IRIREF = '<' (
|
IRIREF = '<' (
|
||||||
'!' .. ';'
|
'!'
|
||||||
|
| '#' .. ';'
|
||||||
| '='
|
| '='
|
||||||
| '?' .. '['
|
| '?' .. '['
|
||||||
| ']'
|
| ']'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue