summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/routing.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/routing.rst b/docs/routing.rst
index fababa7..ed7b8d2 100644
--- a/docs/routing.rst
+++ b/docs/routing.rst
@@ -26,6 +26,10 @@ Path Result
//123 `No Match`
============ =========================================
+Is it possible to escape characters like colon ``:`` with a backslash ``\``. This will prevent to trigger the old syntax in case you need to use ``:``.
+For example: the rule ``/<action>/item:<id>`` triggers the old syntax, (see below) but ``/action/item\:<id>`` works as intended with the new syntax.
+
+
You can change the exact behaviour in many ways using filters. This is described in the next section.
Wildcard Filters