Open foxx opened 9 years ago
Yup, seems like this is the problem.
# API
## R [/r]
### DO [GET]
+ request A (application/json)
+ body
{
"x": 42
}
+ response 200 (application/json)
+ body
{
"x": 42
}
The bug here is that it is looking for either just + Request (application/json)
or a number like + Request 123 (application/json)
. It's not taking into account that there may be a request name.
Notice how request body is syntax highlighted but response body is not.