From 66d443183f0c9ca636eb680eea7b2bf3b362bd40 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 26 Jun 2022 21:03:11 +0400 Subject: [PATCH] In README.md a little formatting change to highlight HTTP codes. --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f32a66f..d5c3545 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ A simple CAPTCHA service implementation. It will return an ID of a new captcha in plaintext. #### HTTP codes -- 200 if created +- `200` if created ### Get an image for a captcha @@ -29,9 +29,9 @@ It will return an ID of a new captcha in plaintext. Responds with an image (e.g. in PNG format). #### HTTP codes -- 200 if exists -- 404 if doesn't exist -- 500 if for some reason Image wasn't created +- `200` if exists +- `404` if doesn't exist +- `500` if for some reason Image wasn't created ### Submit an answer @@ -42,9 +42,9 @@ It takes one form-data parameter `answer=123456`. Responds with empty body and one of HTTP codes. #### HTTP codes -- 200 if solved -- 403 if not solved -- 404 if doesn't exist +- `200` if solved +- `403` if not solved +- `404` if doesn't exist ### Check if captcha is solved @@ -53,6 +53,6 @@ Responds with empty body and one of HTTP codes. Responds with empty body and one of HTTP codes. #### HTTP codes -- 200 if solved -- 403 if not solved -- 404 if doesn't exist \ No newline at end of file +- `200` if solved +- `403` if not solved +- `404` if doesn't exist \ No newline at end of file