I have received a URL string with double anchors, but I am unable to generate a URL
object from that string.
let url = URL(string: "https://www.example.com/help.html#details#moredetails") // returns nil
The URL is valid and we are able to open it in browser. The # in my url does not really act as an anchor, it actually opens a new page. Is there any way to create URL with multiple # in the url path?