fix: yaml parsing

This commit is contained in:
Morten Olsen
2025-05-18 22:29:50 +02:00
parent e0707e74fb
commit ba56b66222
3 changed files with 13 additions and 6 deletions

View File

@@ -2,16 +2,16 @@
First, create a resource:
```http id=createUser
```http #createUser,format=yaml
POST https://httpbin.org/post
Content-Type: application/json
{"username": "alpha"}
username: alpha
```
Then, fetch a different resource:
```http id=getItem
```http #getItem
GET https://httpbin.org/get?item=123
```