When writing the following: ``` markdown ## GET /posts/:post\_id/comments/:map\_id ``` It's producing an md5 hash instead of an underscore: ``` markdown GET /posts/:postmd5-e60453642b5f53da16f4e11348bc05c1id/comments/:mapmd5-e60453642b5f53da16f4e11348bc05c1id ``` We need to escape /posts/:post_id/comments/:map_id otherwise it places emphasis tags around the middle of the URL.
When writing the following:
## GET /posts/:post\_id/comments/:map\_idIt's producing an md5 hash instead of an underscore:
We need to escape /posts/:post_id/comments/:map_id otherwise it places emphasis tags around the middle of the URL.