diff --git a/spec/README.md b/spec/README.md
index 59ae196..de56d70 100644
--- a/spec/README.md
+++ b/spec/README.md
@@ -127,12 +127,12 @@ whole lifetime of the server.
deleted).
For instance, given this request:
-```
+```http
HTTP/1.1 GET /routes
```
an appropiate reponse may look like this:
-```
+```http
200 OK
Content-Type: application/json
Content-Length: 189
@@ -169,7 +169,7 @@ Returns JSON data about the current routes.
* **Success Responses**:
* **Code**: `200 OK`
**Content**:
- ```
+ ```json
[
{
"method": "GET",
@@ -197,7 +197,7 @@ Accepts JSON data that defines a new route to be appended to the current routes.
* **Method**: `POST`
* **Header**: `Content-Type: application/json`
* **Data Params**:
- ```
+ ```json
{
"method": "GET",
"url_pattern": "/hello",
@@ -209,7 +209,7 @@ Accepts JSON data that defines a new route to be appended to the current routes.
* **Code**: `201 Created`
**Header**: `Content-Type: application/json`
**Content**:
- ```
+ ```json
{
"method": "GET",
"url_pattern": "/hello",
@@ -225,7 +225,7 @@ Accepts JSON data that defines a new route to be appended to the current routes.
* **Code**: `400 Missing Mandatory Field`
**Header**: `Content-Type: application/json`
**Content**:
- ```
+ ```json
{
"missing_mandatory_fields": [
"url_pattern",
@@ -234,7 +234,7 @@ Accepts JSON data that defines a new route to be appended to the current routes.
}
```
* **Sample Call**:
- ```
+ ```sh
$ curl -X POST --data-binary @- $KAPOW_URL/routes <
**Header**: `Content-Type: application/json`
**Content**:
- ```
+ ```json
{
"method": "GET",
"url_pattern": "/hello",
@@ -289,7 +289,7 @@ Accepts JSON data that defines a new route to be appended to the current routes.
* **Code**: `400 Missing Mandatory Field`
**Header**: `Content-Type: application/json`
**Content**:
- ```
+ ```json
{
"missing_mandatory_fields": [
"url_pattern",
@@ -302,7 +302,7 @@ Accepts JSON data that defines a new route to be appended to the current routes.
* **Code**: `404 Invalid Index`
* **Code**: `404 Invalid Route Spec`
* **Sample Call**:
- ```
+ ```sh
$ curl -X PUT --data-binary @- $KAPOW_URL/routes <
- ```
+ ```html