~ enumerated escape sequence types
authorEric Prud'hommeaux <eric@w3.org>
Wed, 07 Mar 2012 11:31:06 -0500
changeset 221 af9497595c62
parent 220 8f7502d85cda
child 222 c43ac715dde2
child 223 a70167d334db
~ enumerated escape sequence types
rdf-turtle/index.html
--- a/rdf-turtle/index.html	Wed Feb 29 14:43:26 2012 -0500
+++ b/rdf-turtle/index.html	Wed Mar 07 11:31:06 2012 -0500
@@ -540,114 +540,7 @@
 
             </p>
           </section>
-          <section id="sec-escapes" class="issue">
-            <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>
-
-            <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 value encoded by the four hexadecimal digits interpreted from most significant to least significant digit.</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 value encoded by the eight hexadecimal digits interpreted from most significant to least significant digit.</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>
-
-	    <p>
-	      <a href="#term-turtle2-BLANK_NODE_LABEL"><span style="font-weight:bold;">Blank node label</span>s</a> and <a href="#term-turtle2-PN_LOCAL"><span style="font-weight:bold;">local name</span>s</a> may include escaped punctuation. A '\' followed by one of <code>~.-!$&amp;'()*+,;=:/?#@%_</code> represents the character to the right of the '\'.
-	    </p>
-
-	    <p class="note">%-encoded sequences are in the <a href="#term-turtle2-IRI_REF">character range for IRIs</a> and are <a href="#term-turtle2-PERCENT">explicitly allowed</a> in blank node labels and local names. These appear as a '%' followed by two hex characters and represent that same sequence of three characters. These sequences are <em>not</em> decoded during processing. A term written as <code>&lt;http://a.example/%66oo-bar&gt;</code> in Turtle designates the RDF IRI <code>http://a.example/%66oo-bar</code> and not RDF IRI <code>http://a.example/foo-bar</code>. A term written as <code>ex:%66oo-bar</code> with a prefix <code>@prefix ex: &lt;http://a.example/&gt;</code> also designates the RDF IRI <code>http://a.example/%66oo-bar</code>.</p>
-
-	    <p>
-	      <a href="#prod-turtle2-String"><span style="font-weight:bold;">String</span>s</a> may include the <code>\</code>-escape sequences allowed in IRIs, as well as the the following escape sequences, which also map to Unicode code points:</p>
-
-            <table>
-              <thead>
-                <tr>
-                  <th>Escape sequence</th>
-
-                  <th>Unicode code point</th>
-
-                </tr>
-              </thead>
-              <tbody>
-
-                <tr>
-                  <td>'\t'</td>
-                  <td>U+0009</td>
-                </tr>
-                                                              
-                <tr>
-                  <td>'\b'</td>
-                  <td>U+0008</td>
-                </tr>
-                                                              
-                <tr>
-
-                  <td>'\n'</td>
-                  <td>U+000A</td>
-                </tr>
-                                                              
-                <tr>
-                  <td>'\r'</td>
-                  <td>U+000D</td>
-                </tr>
-                                                              
-                <tr>
-                  <td>'\f'</td>
-                  <td>U+000C</td>
-                </tr>
-                                                              
-                <tr>
-                  <td>'\"'</td>
-                <td>U+0022</td>
-                </tr>
-                                                                                                                            
-                <tr>
-                  <td>'\''</td>
-                <td>U+0027</td>
-                </tr>
-                                                                                                                            
-                <tr>
-                  <td>'\\'</td>
-
-                  <td>U+005C</td>
-                </tr>
-
-              </tbody>
-            </table>
-
-
-          </section>
-          <section id="sec-escapesB" class="issue">
+          <section id="sec-escapes">
             <h3>Escape Sequences</h3>
 
 	    <p>