Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: Replace the single-row time zone code points table #3098

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 1 addition & 29 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -32736,36 +32736,8 @@ <h1>Time Zone Offset String Format</h1>
<p>
ECMAScript defines a string interchange format for UTC offsets, derived from ISO 8601.
The format is described by the following grammar.
The usage of Unicode code points in this grammar is listed in <emu-xref href="#table-time-zone-offset-string-code-points"></emu-xref>.
</p>

<emu-table id="table-time-zone-offset-string-code-points" caption="Time Zone Offset String Code Points">
<table>
<tr>
<th>
Code Point
</th>
<th>
Unicode Name
</th>
<th>
Abbreviation
</th>
</tr>
<tr>
<td>
`U+2212`
</td>
<td>
MINUS SIGN
</td>
<td>
&lt;MINUS>
</td>
</tr>
</table>
</emu-table>

<h2>Syntax</h2>
<emu-grammar type="definition">
UTCOffset :::
Expand All @@ -32775,7 +32747,7 @@ <h2>Syntax</h2>

TemporalSign :::
ASCIISign
&lt;MINUS&gt;
&lt;U+2212 MINUS SIGN&gt;

ASCIISign ::: one of
`+` `-`
Expand Down