Skip to content
Open
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,10 @@ This page provides an overall cheat sheet of all the capabilities of `RegExp` sy
</li>
<li><code>/&#x3C;.*?>/</code> will match "&#x3C;foo>"</li>
</ul>
<p>
<b>Note:</b> Adding <code>?</code> after <code>{n}</code> doesn't change the match.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[markdownlint] reported by reviewdog 🐶
error MD033/no-inline-html Inline HTML [Element: b]

Since <code>{n}</code> always matches exactly n times, <code>x{n}?</code> behaves the same as <code>x{n}</code>.
</p>
</td>
</tr>
</tbody>
Expand Down
Loading