Skip to content

Commit e8c9a0c

Browse files
directly added links to the text itself
1 parent 19161af commit e8c9a0c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/identifiers.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,25 @@ An identifier is any nonempty Unicode[^non_ascii_idents] string of the following
44

55
Either
66

7-
* The first character has property `XID_start`
8-
* The remaining characters have property `XID_continue`
7+
* The first character has property [XID_start]
8+
* The remaining characters have property [XID_continue]
99

1010
Or
1111

1212
* The first character is `_`
1313
* The identifier is more than one character, `_` alone is not an identifier
14-
* The remaining characters have property `XID_continue`
14+
* The remaining characters have property [XID_continue]
1515

1616
that does _not_ occur in the set of [keywords].
1717

18-
> **Note**: `XID_start` and `XID_continue` as character properties cover the
18+
> **Note**: [XID_start] and [XID_continue] as character properties cover the
1919
> character ranges used to form the more familiar C and Java language-family
2020
> identifiers.
2121
22-
Links to Unicode descriptions:
2322

24-
* `XID_start` :http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Start%3A%5D&abb=on&g=&i=
25-
* `XID_continue` :http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Continue%3A%5D&abb=on&g=&i=
26-
2723

24+
[XID_start]: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Start%3A%5D&abb=on&g=&i=
25+
[XID_continue]: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Continue%3A%5D&abb=on&g=&i=
2826
[keywords]: ../grammar.html#keywords
2927
[^non_ascii_idents]: Non-ASCII characters in identifiers are currently feature
3028
gated. This is expected to improve soon.

0 commit comments

Comments
 (0)