From d66ea3c3ce453f72eb05a9e62fc7b7388a230bbe Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 8 Jul 2016 11:57:40 +0100 Subject: [PATCH] Don't line wrap the API descriptions They are in RST format which is whitespace sensitive and threfore can't be line wrapped without breaking the syntax. There is more wrapping in other places but some of it is into tables where it does need to be fixed width in order for the RST table to parse correctly. --- templating/matrix_templates/templates/http-api.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templating/matrix_templates/templates/http-api.tmpl b/templating/matrix_templates/templates/http-api.tmpl index ebf3b4ff1..7496ea72b 100644 --- a/templating/matrix_templates/templates/http-api.tmpl +++ b/templating/matrix_templates/templates/http-api.tmpl @@ -8,7 +8,7 @@ {% endif -%} -{{endpoint.desc | wrap(80)}} +{{endpoint.desc}} {{":Rate-limited: Yes." if endpoint.rate_limited else "" }} {{":Requires auth: Yes." if endpoint.requires_auth else "" }}