diff --git a/README.rst b/README.rst
index 9ced473..2f14c4c 100644
--- a/README.rst
+++ b/README.rst
@@ -12,67 +12,67 @@ flavors by `Runscope `__
ENDPOINTS
---------
-- ```/`` `__ This page.
-- ```/ip`` `__ Returns Origin IP.
-- ```/user-agent`` `__ Returns
+- `/ `__ This page.
+- `/ip `__ Returns Origin IP.
+- `/user-agent `__ Returns
user-agent.
-- ```/headers`` `__ Returns header dict.
-- ```/get`` `__ Returns GET data.
-- ``/post`` Returns POST data.
-- ``/patch`` Returns PATCH data.
-- ``/put`` Returns PUT data.
-- ``/delete`` Returns DELETE data
-- ```/gzip`` `__ Returns gzip-encoded data.
-- ```/deflate`` `__ Returns deflate-encoded
+- `/headers `__ Returns header dict.
+- `/get `__ Returns GET data.
+- /post Returns POST data.
+- /patch Returns PATCH data.
+- /put Returns PUT data.
+- /delete Returns DELETE data
+- `/gzip `__ Returns gzip-encoded data.
+- `/deflate `__ Returns deflate-encoded
data.
-- ```/status/:code`` `__ Returns given
+- `/status/:code `__ Returns given
HTTP Status code.
-- ```/response-headers?key=val`` `__
+- `/response-headers?key=val `__
Returns given response headers.
-- ```/redirect/:n`` `__ 302 Redirects
+- `/redirect/:n `__ 302 Redirects
*n* times.
-- ```/redirect-to?url=foo`` `__
+- `/redirect-to?url=foo `__
302 Redirects to the *foo* URL.
-- ```/relative-redirect/:n`` `__
+- `/relative-redirect/:n `__
302 Relative redirects *n* times.
-- ```/cookies`` `__ Returns cookie data.
-- ```/cookies/set?name=value`` `__
+- `/cookies `__ Returns cookie data.
+- `/cookies/set?name=value `__
Sets one or more simple cookies.
-- ```/cookies/delete?name`` `__
+- `/cookies/delete?name `__
Deletes one or more simple cookies.
-- ```/basic-auth/:user/:passwd`` `__
+- `/basic-auth/:user/:passwd `__
Challenges HTTPBasic Auth.
-- ```/hidden-basic-auth/:user/:passwd`` `__
+- `/hidden-basic-auth/:user/:passwd `__
404'd BasicAuth.
-- ```/digest-auth/:qop/:user/:passwd`` `__
+- `/digest-auth/:qop/:user/:passwd `__
Challenges HTTP Digest Auth.
-- ```/stream/:n`` `__ Streams *n*–100
+- `/stream/:n `__ Streams *n*–100
lines.
-- ```/delay/:n`` `__ Delays responding for
+- `/delay/:n `__ Delays responding for
*n*–10 seconds.
-- ```/drip?numbytes=n&duration=s&delay=s&code=code`` `__
+- `/drip?numbytes=n&duration=s&delay=s&code=code `__
Drips data over a duration after an optional initial delay, then
(optionally) returns with the given status code.
-- ```/html`` `__ Renders an HTML Page.
-- ```/robots.txt`` `__ Returns some
+- `/html `__ Renders an HTML Page.
+- `/robots.txt `__ Returns some
robots.txt rules.
-- ```/deny`` `__ Denied by robots.txt file.
-- ```/cache`` `__ Returns 200 unless an
+- `/deny `__ Denied by robots.txt file.
+- `/cache `__ Returns 200 unless an
If-Modified-Since or If-None-Match header is provided, when it
returns a 304.
-- ```/cache/:n`` `__ Sets a Cache-Control
+- `/cache/:n `__ Sets a Cache-Control
header for *n* seconds.
-- ```/bytes/:n`` `__ Generates *n*
+- `/bytes/:n `__ Generates *n*
random bytes of binary data, accepts optional *seed* integer
parameter.
-- ```/stream-bytes/:n`` `__
+- `/stream-bytes/:n `__
Streams *n* random bytes of binary data, accepts optional *seed* and
*chunk\_size* integer parameters.
-- ```/links/:n`` `__ Returns page
+- `/links/:n `__ Returns page
containing *n* HTML links.
-- ```/forms/post`` `__ HTML form that
+- `/forms/post `__ HTML form that
submits to */post*
-- ```/xml`` `__ Returns some XML
+- `/xml `__ Returns some XML
DESCRIPTION
-----------