From cbb384ae67c40af33bca5cb3dc047d6ed1e1741b Mon Sep 17 00:00:00 2001 From: Nate Silva Date: Tue, 25 Mar 2014 21:12:51 -0700 Subject: [PATCH] fix asterisks being interpreted as Markdown They are supposed to be literal asterisks. Markdown was changing them into HTML `` and `` tags. --- docs/Reference.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/Reference.md b/docs/Reference.md index 75934e2cd..14e8f43b3 100755 --- a/docs/Reference.md +++ b/docs/Reference.md @@ -693,8 +693,7 @@ server.route({ }); ``` -In addition to the optional '?' suffix, a parameter name can also specify the number of matching segments using the '*' suffix, followed by a number -greater than 1. If the number of expected parts can be anything, then use '*' without a number (matching any number of segments can only be used in the +In addition to the optional `?` suffix, a parameter name can also specify the number of matching segments using the `*` suffix, followed by a number greater than 1. If the number of expected parts can be anything, then use `*` without a number (matching any number of segments can only be used in the last path segment). ```javascript