Skip to content

Commit

Permalink
Conciseness in table
Browse files Browse the repository at this point in the history
  • Loading branch information
slevithan committed Nov 1, 2024
1 parent c477991 commit e331b16
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ Notice that nearly every feature below has at least subtle differences from Java
<td>
✔ Can be backref, error, null, octal, identity escape, or any of these combined with literal digits, based on complex rules that differ from JS<br>
✔ Always handles escaped single digit 1-9 outside char class as backref<br>
✔ Allows null with 1-3 0s (unlike JS)<br>
✔ Allows null with 1-3 0s<br>
</td>
</tr>
<tr valign="top">
Expand Down Expand Up @@ -465,7 +465,7 @@ Notice that nearly every feature below has at least subtle differences from Java
<td align="middle">✅</td>
<td align="middle">✅</td>
<td>
✔ Error (unlike JS)<br>
✔ Error<br>
</td>
</tr>
<tr valign="top">
Expand Down Expand Up @@ -504,7 +504,7 @@ Notice that nearly every feature below has at least subtle differences from Java
<td align="middle">❌</td>
<td align="middle">✅</td>
<td>
✔ Doesn't require nested classes for union and ranges (unlike JS)<br>
✔ Doesn't require nested classes for union and ranges<br>
</td>
</tr>

Expand All @@ -515,9 +515,9 @@ Notice that nearly every feature below has at least subtle differences from Java
<td align="middle">✅</td>
<td align="middle">✅</td>
<td>
✔ Always multiline (in JS terms)<br>
✔ Only <code>\n</code> as newline (unlike JS)<br>
✔ Allows following quantifier (unlike JS)<br>
✔ Always "multiline" (per JS)<br>
✔ Only <code>\n</code> as newline<br>
✔ Allows following quantifier<br>
</td>
</tr>
<tr valign="top">
Expand Down Expand Up @@ -553,8 +553,8 @@ Notice that nearly every feature below has at least subtle differences from Java
<td align="middle">✅</td>
<td align="middle">✅</td>
<td>
✔ Unicode definition (unlike JS)<br>
✔ Allows following quantifier (unlike JS)<br>
✔ Unicode based (unlike JS)<br>
✔ Allows following quantifier<br>
</td>
</tr>
<tr valign="top">
Expand All @@ -579,10 +579,10 @@ Notice that nearly every feature below has at least subtle differences from Java
<td align="middle">✅</td>
<td align="middle">✅</td>
<td>
✔ Error for variable-length quantifiers within lookbehind (unlike JS)<br>
✔ Error for variable-length quantifiers within lookbehind (JS allows)<br>
✔ Allows variable-length top-level alternatives<br>
✔ Allows following quantifier (unlike JS in any mode)<br>
✔ Values captured within min-0 quantified lookbehind remain referenceable<br>
✔ Values captured within min-0 quantified lookbehind remain referenceable (unlike JS)<br>
</td>
</tr>

Expand All @@ -596,7 +596,7 @@ Notice that nearly every feature below has at least subtle differences from Java
✔ Includes all JS forms<br>
✔ Adds form <code>{,n}</code> for implicit min 0<br>
✔ Explicit bounds have upper limit of 100,000 (unlimited in JS)<br>
✔ Allowed to follow assertions (unlike JS)<br>
✔ Allowed to follow assertions<br>
</td>
</tr>
<tr valign="top">
Expand Down

0 comments on commit e331b16

Please sign in to comment.