You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #1011 Update index.rst regex matching file extensions fix (gpetraroli)
This PR was merged into the 2.x branch.
Discussion
----------
Update index.rst regex matching file extensions fix
/\\.(j|t)sx?$/. It seems to be using double backslashes (\\) to escape the dot (.) character, which is not necessary. The correct way to escape the dot character in a regular expression is by using a single backslash (\), like this: /\.(j|t)sx?$/.
Commits
-------
f455802 Update index.rst regex matching file extensions fix
0 commit comments