Browse Source

Fix table wrapping

pull/5063/head
Rapptz 5 years ago
parent
commit
c911cd0dbd
  1. 33
      discord/invite.py
  2. 2
      docs/_static/style.css

33
discord/invite.py

@ -203,23 +203,28 @@ class Invite(Hashable):
The following table illustrates what methods will obtain the attributes:
+------------------------------------+----------------------------------------------------------+
+------------------------------------+----------------------------------+
| Attribute | Method |
+====================================+==========================================================+
| :attr:`max_age` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
+------------------------------------+----------------------------------------------------------+
| :attr:`max_uses` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
+------------------------------------+----------------------------------------------------------+
| :attr:`created_at` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
+------------------------------------+----------------------------------------------------------+
| :attr:`temporary` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
+------------------------------------+----------------------------------------------------------+
| :attr:`uses` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
+------------------------------------+----------------------------------------------------------+
+====================================+==================================+
| :attr:`max_age` | :meth:`abc.GuildChannel.invites` |
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`max_uses` | :meth:`abc.GuildChannel.invites` |
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`created_at` | :meth:`abc.GuildChannel.invites` |
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`temporary` | :meth:`abc.GuildChannel.invites` |
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`uses` | :meth:`abc.GuildChannel.invites` |
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`approximate_member_count` | :meth:`Client.fetch_invite` |
+------------------------------------+----------------------------------------------------------+
+------------------------------------+----------------------------------+
| :attr:`approximate_presence_count` | :meth:`Client.fetch_invite` |
+------------------------------------+----------------------------------------------------------+
+------------------------------------+----------------------------------+
If it's not in the table above then it is available by all methods.

2
docs/_static/style.css

@ -804,6 +804,7 @@ dd {
table.docutils {
width: 100%;
table-layout: fixed;
}
table.docutils.footnote {
@ -828,6 +829,7 @@ table.docutils tbody tr td {
border-top: solid 1px var(--table-border);
padding: 7px 5px;
vertical-align: top;
overflow-wrap: break-word;
}
table.docutils tbody tr:last-child th,
table.docutils tbody tr:last-child td {

Loading…
Cancel
Save