From ac00fcad771174090beacf2acfbd8af1a88108d0 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 30 Jun 2019 18:59:19 -0400 Subject: Flatten genindex to not group names. Also better width in the tables. --- docs/_templates/genindex.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/_templates') diff --git a/docs/_templates/genindex.html b/docs/_templates/genindex.html index 4faf370c..a5f2262f 100644 --- a/docs/_templates/genindex.html +++ b/docs/_templates/genindex.html @@ -17,10 +17,11 @@ key = key.substr(12); // discord.ext. } - if(el.textContent.endsWith('method)') || el.textContent.indexOf('()') !== -1) { + if(el.textContent.indexOf('()') !== -1) { key = key + '()' } el.textContent = key; } + document.querySelectorAll("td").forEach(el => el.style.width = 'auto'); {% endblock %} -- cgit v1.2.3