matryer / silk

Markdown based document-driven RESTful API testing.
http://silktest.org/
GNU General Public License v2.0
942 stars 69 forks source link

Support for standard md line to split request/response #37

Closed dahernan closed 8 years ago

dahernan commented 8 years ago

Support for lines in the way of --- instead of === to split request/response

Original example is

# Forgot your password

## POST /users

Create a new user.

{
    "name": "Test user",
    "username": "testreset",
    "email": "testreset@test.test.com",
    "password": "abc123",
    "password_confirm": "abc123"
}

===

Standard MD will be:

# Forgot your password

## POST /users

Create a new user.

{
    "name": "Test user",
    "username": "testreset",
    "email": "testreset@test.test.com",
    "password": "abc123",
    "password_confirm": "abc123"
}

---