Skip to content

Commit

Permalink
Merge pull request #133 from aphillips/gh-pages
Browse files Browse the repository at this point in the history
Fixed 128, 129. Started on 126
  • Loading branch information
aphillips committed Oct 24, 2017
2 parents e56cb71 + 9474e21 commit 91b404e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions index.html
Expand Up @@ -76,6 +76,12 @@
authors: [ "Anne van Kesteren", "Joshua Bell", "Addison Phillips" ]
},

"ISO10646": {
title: "Information Technology - Universal Multiple- Octet Coded CharacterSet (UCS) - Part 1: Architecture and Basic Multilingual Plane",
authors: [ "ISO/IEC10646-1:1993" ],
note: "The current specification also takes into consideration the first five amendments to ISO/IEC 10646-1:1993. Useful roadmaps (http://www.egt.ie/standards/iso10646/ucs-roadmap.html) show which scripts sit at which numeric ranges."
},

"UTS10": {
title: "Unicode Technical Standard #10: Unicode Collation Algorithm",
href: "http://www.unicode.org/reports/tr10/",
Expand Down Expand Up @@ -1105,7 +1111,8 @@ <h3>Character Escapes</h3>
additional equivalent means of representing characters inside a given
resource. They also allow for the encoding of Unicode characters not
represented in the character encoding scheme used by the document.</p>
<p>See also, Section 4.6 of [[!CHARMOD]].</p>

<p class="note">For further discussion of character escapes, including guidelines for the definition of escaping mechanisms in specifications, see: Section 4.6 of [[!CHARMOD]].</p>

<!-- examples taken from S4.6 charmod
Expand All @@ -1128,7 +1135,7 @@ <h3>Character Escapes</h3>
<p>For example, <span class="qchar"></span> <span class="uname" translate="no">U+20AC
EURO SIGN</span> can also be encoded in HTML as the hexadecimal
entity <code>&amp;#x20ac;</code> or as the decimal entity <code>&amp;#8364;</code>.
In a JavaScript or JSON file, it can appear as <code>\u20ac</code>
In a JavaScript or JSON file, it can appear as <code>\u20ac</code> or as <code>\u{20AC}</code>
while in a CSS stylesheet it can appear as <code>\20ac</code>. All of
these representations encode the same literal character value: <span class="qchar"></span>.</p>
<p>Character escapes are normally interpreted before a document is
Expand Down
6 changes: 3 additions & 3 deletions local.css
Expand Up @@ -137,15 +137,15 @@ li.dropExampleItem {


td.b1 {
background-color:#FF9;
background-color:#4286f4;
}

td.b2 {
background-color:#6FC;
background-color:#41f4d0;
}

td.b3 {
background-color: #F99;
background-color: #7741f4;
}

td.b-clear {
Expand Down

0 comments on commit 91b404e

Please sign in to comment.