Skip to content

Commit

Permalink
Specify IRIREF and quoted-triple wrappers more accurately.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Jul 27, 2023
1 parent dbb84d2 commit d6c87f8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ <h3>Quoted Triples</h3>
<code><a href="#grammar-production-subject">subject</a></code>,
<code><a href="#grammar-production-predicate">predicate</a></code>, and
<code><a href="#grammar-production-object">object</a></code>
preceded by <code>&lt;&lt;</code> and followed by <code>&gt;&gt;</code>.
preceded by two concatenated <code>&lt;</code> characters, each having the code point <span class="codepoint">U+003C</span>, and
followed by two concatenated <code>&gt;</code> characters, each having the code point <span class="codepoint">U+003E</span>.
Note that <a data-cite="RDF12-CONCEPTS#dfn-quoted-triple">quoted triples</a>
may be nested.
</p>
Expand All @@ -222,7 +223,9 @@ <h3>IRIs</h3>

<p>
As in N-Triples, <a data-cite="RDF12-CONCEPTS#dfn-iri">IRIs</a> may be written only as absolute IRIs.
IRIs are enclosed in '&lt;' and '&gt;' and may contain numeric escape sequences (described below).
IRIs are preceded by <code>&lt;</code> (code point <span class="codepoint">U+003C</span>) and
followed by <code>&gt;</code> (code point <span class="codepoint">U+003E</span>),
and may contain numeric escape sequences (described below).
For example <code>&lt;http://example.org/#green-goblin&gt;</code>.
</p>
</section>
Expand Down

0 comments on commit d6c87f8

Please sign in to comment.