Skip to content

Commit

Permalink
Add requirement that alphabetic characters in LANG_DIR be case mapped…
Browse files Browse the repository at this point in the history
… to lower case.

Fixes #58.
  • Loading branch information
gkellogg committed Dec 21, 2023
1 parent 61a4bb3 commit 297b985
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,9 @@ <h2>A Canonical form of N-Quads</h2>
<li><a href="#grammar-production-HEX"><code>HEX</code></a> MUST use only digits
(<code>[</code><a href="#cp-zero"><code title="digit zero">0</code></a><a href="#cp-nine"><code title="digit nine">9</code></a><code>]</code>)
and uppercase letters (<code>[</code><a href="#cp-uppercase-a"><code title="latin capital letter A">A</code></a><a href="#cp-uppercase-f"><code title="latin capital letter F">F</code></a><code>]</code>).</li>
<li>Alphabetic characters in <a href="#grammar-production-LANG_DIR" class="type langDir"><code>LANG_DIR</code></a> MUST use only
the lowercase letters (<code>[</code><a href="#cp-lowercase-a"><code title="latin small letter A">a</code></a><a href="#cp-lowercase-z"><code title="latin small letter Z">z</code></a><code>]</code>)
with any uppercase letters <a data-cite="I18N-GLOSSARY#def_case_mapping">case mapped</a> to lowercase.</li>
<li>Within <a href="#grammar-production-STRING_LITERAL_QUOTE"><code>STRING_LITERAL_QUOTE</code></a>:
<ul>
<li>Characters
Expand Down Expand Up @@ -578,7 +581,7 @@ <h2>Selected Terminal Literal Strings</h2>
<tr id="cp-uppercase-a">
<td><code class="codepoint">U+0041</code></td>
<td><code title="latin capital letter A">A</code></td>
<td>Latin capital letter E</td>
<td>Latin capital letter A</td>
</tr>
<tr id="cp-uppercase-f">
<td><code class="codepoint">U+0046</code></td>
Expand All @@ -595,6 +598,16 @@ <h2>Selected Terminal Literal Strings</h2>
<td><code title="underscore">_</code></td>
<td>Underscore</td>
</tr>
<tr id="cp-lowercase-a">
<td><code class="codepoint">U+0061</code></td>
<td><code title="latin small letter A">a</code></td>
<td>Latin small letter A</td>
</tr>
<tr id="cp-lowercase-z">
<td><code class="codepoint">U+007A</code></td>
<td><code title="latin small letter Z">F</code></td>
<td>Latin small letter Z</td>
</tr>
<tr id="cp-delete">
<td><code class="codepoint">U+007F</code></td>
<td><code title="delete">DEL</code></td>
Expand Down

0 comments on commit 297b985

Please sign in to comment.