--- a/rdf-turtle/index.html Wed Feb 29 07:27:39 2012 -0500
+++ b/rdf-turtle/index.html Wed Feb 29 11:26:59 2012 -0500
@@ -540,94 +540,8 @@
</p>
</section>
- <section id="sec-strings" class="issue">
- <h3><span style="color:red;">REMOVE: </span>String Escape Sequences</h3>
-
- <p>Turtle strings, IRIs and <a href="#term-turtle2-PN_LOCAL">local names</a> can use <code>\</code>-escape sequences to
- represent Unicode code points.</p>
-
- <p class="note">
- Some character escapes are allowed
- in the local part of prefixed names. These are the non-alphanumeric
- characters allowed in an IRI path. The characters are
- <code>~.-!$&'()*+,;=:/?#@%_</code>. It is not necessary to escape
- these characters in strings or IRIs.</p>
-
- <p class="note">The <a href="#term-turtle2-PERCENT"><PERCENT></a> terminal matches %-encoding
- sequences. These sequences are <em>not</em> decoded during processing; a term written as
- <code><http://a.example/%66oo\-bar></code> in Turtle designates the RDF IRI
- <code>http://a.example/%66oo-bar</code>.</p>
-
-
- <p>The following table describes all the escape sequences
- allowed inside a <a href="#prod-turtle2-String">string</a>
- or <a href="#prod-turtle2-IRI_REF">IRI_REF</a>:</p>
-
- <table>
- <thead>
- <tr>
- <th>Escape sequence</th>
-
- <th>Unicode code point</th>
-
- </tr>
- </thead>
- <tbody>
-
- <tr>
- <td>'\u' <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a></td>
- <td>A Unicode codepoint in the range U+0 to U+FFFF inclusive
- corresponding to the encoded hexadecimal value.</td>
- </tr>
-
-
- <tr>
- <td>'\U' <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a> <a href="#rHEX">hex</a></td>
-
- <td>A Unicode codepoint in the range U+10000 to U+10FFFF inclusive
- corresponding to the encoded hexadecimal value.</td>
- </tr>
-
- <tr>
- <td>'\t'</td>
- <td>U+0009</td>
- </tr>
-
- <tr>
-
- <td>'\n'</td>
- <td>U+000A</td>
- </tr>
-
- <tr>
- <td>'\r'</td>
- <td>U+000D</td>
- </tr>
-
- <tr>
- <td>'\"'<br />
- (inside <a href="#prod-turtle2-String">string</a>)</td>
- <td>U+0022</td>
- </tr>
-
- <tr>
- <td>'\\'</td>
-
- <td>U+005C</td>
- </tr>
-
- </tbody>
- </table>
-
- <p>where <a href="#rHEX">HEX</a> is a hexadecimal character</p>
- <blockquote>
- <p><span style="font-family: monospace; font-size: 85%;"><a id="rHEX">HEX</a>
- ::= [0-9] | [A-F] | [a-f]</span></p>
-
- </blockquote>
- </section>
- <section id="sec-escapes" class="issue">
- <h3><span style="color:red;">ADD: </span>Escape Sequences</h3>
+ <section id="sec-escapes">
+ <h3>Escape Sequences</h3>
<p><span style="font-weight:bold;">IRI</span>s, used as <a href="#prod-turtle2-IRIref">RDF terms</a> or as in <a href="#prod-turtle2-prefixID">@prefix</a> or <a href="#prod-turtle2-base">@base</a> declarations, may include <code>\</code>-escape sequences to represent Unicode code points:</p>