We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the route "'xy:{x},{y}'" creates: "/^/?xy:/([^\/?]+),([^\/?]+)/?$/i" instead of "/^/?xy:([^\/?]+),([^\/?]+)/?$/i"
Test here: http://www.regexr.com/ the string "xy:34234,-2342"
The text was updated successfully, but these errors were encountered:
Or maybe the ":" is used for the variables. But please let me use it anyway, even escaping it somehow.
Sorry, something went wrong.
I made the wrong assumption that : was always the end of an optional argument and always going to need / in between 2 arguments.
:
/
see:
crossroads.js/dev/src/pattern_lexer.js
Lines 28 to 34 in 9e6e24c
No branches or pull requests
For the route "'xy:{x},{y}'" creates: "/^/?xy:/([^\/?]+),([^\/?]+)/?$/i" instead of "/^/?xy:([^\/?]+),([^\/?]+)/?$/i"
Test here: http://www.regexr.com/ the string "xy:34234,-2342"
The text was updated successfully, but these errors were encountered: