diff --git a/discord/appinfo.py b/discord/appinfo.py index a26cc6eaf..98c2cd326 100644 --- a/discord/appinfo.py +++ b/discord/appinfo.py @@ -79,7 +79,7 @@ class AppInfo: verify_key: :class:`str` The hex encoded key for verification in interactions and the - GameSDK's `GetTicket `_. + GameSDK's :ddocs:`GetTicket `. .. versionadded:: 1.3 @@ -243,7 +243,7 @@ class PartialAppInfo: A list of RPC origin URLs, if RPC is enabled. verify_key: :class:`str` The hex encoded key for verification in interactions and the - GameSDK's `GetTicket `_. + GameSDK's :ddocs:`GetTicket `. terms_of_service_url: Optional[:class:`str`] The application's terms of service URL, if set. privacy_policy_url: Optional[:class:`str`] @@ -302,7 +302,7 @@ class AppInstallParams: Attributes ---------- scopes: List[:class:`str`] - The list of `OAuth2 scopes `_ + The list of :ddocs:`OAuth2 scopes ` to add the application to a guild with. permissions: :class:`Permissions` The permissions to give to application in the guild. diff --git a/discord/embeds.py b/discord/embeds.py index 53103dd65..700adae14 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -122,7 +122,7 @@ class Embed: The type of embed. Usually "rich". This can be set during initialisation. Possible strings for embed types can be found on discord's - `api docs `_ + :ddocs:`api docs ` description: Optional[:class:`str`] The description of the embed. This can be set during initialisation. @@ -190,11 +190,7 @@ class Embed: """Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in. - You can find out about this format in the `official Discord documentation`__. - - .. _DiscordDocs: https://discord.com/developers/docs/resources/channel#embed-object - - __ DiscordDocs_ + You can find out about this format in the :ddocs:`official Discord documentation `. Parameters ----------- diff --git a/discord/raw_models.py b/discord/raw_models.py index d61b45475..3881b7682 100644 --- a/discord/raw_models.py +++ b/discord/raw_models.py @@ -147,7 +147,7 @@ class RawMessageUpdateEvent(_RawReprMixin): .. versionadded:: 1.7 data: :class:`dict` - The raw data given by the `gateway `_ + The raw data given by the :ddocs:`gateway ` cached_message: Optional[:class:`Message`] The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`. diff --git a/discord/voice_client.py b/discord/voice_client.py index 062b26377..f4086d4d6 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -124,11 +124,7 @@ class VoiceProtocol: Parameters ------------ data: :class:`dict` - The raw `voice state payload`__. - - .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object - - __ voice_state_update_payload_ + The raw :ddocs:`voice state payload `. """ raise NotImplementedError @@ -141,11 +137,7 @@ class VoiceProtocol: Parameters ------------ data: :class:`dict` - The raw `voice server update payload`__. - - .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields - - __ voice_server_update_payload_ + The raw :ddocs:`voice server update payload `. """ raise NotImplementedError diff --git a/docs/api.rst b/docs/api.rst index cfbaedfe9..273b4422e 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -879,7 +879,7 @@ Messages will return a :class:`Message` object that represents the message before the content was modified. Due to the inherently raw nature of this event, the data parameter coincides with - the raw data given by the `gateway `_. + the raw data given by the :ddocs:`gateway `. Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This diff --git a/docs/conf.py b/docs/conf.py index 2203ec14a..5d9ec7be4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,6 +51,7 @@ autodoc_typehints = 'none' extlinks = { 'issue': ('https://github.com/Rapptz/discord.py/issues/%s', 'GH-'), + 'ddocs': ('https://discord.com/developers/docs/%s', None), } # Links used for cross-referencing stuff in other documentation