preactjs / preact-router

:earth_americas: URL router for Preact.
http://npm.im/preact-router
MIT License
1.02k stars 155 forks source link

Cheking urls considering protocol-relative url #383

Open 18choi18 opened 4 years ago

18choi18 commented 4 years ago

When using the Router in a specific part of the web page, in other parts they may not know that they should add a native boolean attribute to a link tag for bypassing preact-router's link handling. Currently, in this case, if an anchor tag have protocol-relative url(ex, //www.11st.co.kr) for the value of href, the link can't avoid handling of preact-router because it starts with '/'.

Therefore, unintended handling occurs in the a tag that takes the protocol-relative url as the value of href. So I suggest modifying the regex. From: If the value of href starts with '/'? To: If the value of href starts with '/' but the next character is not '/'?