You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/more-features.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,10 +195,10 @@ that return color values. While the official, documented name of this is `discor
195
195
works as well.
196
196
197
197
```py
198
-
embed.add_field(title="A Normal Field", value="A really nice field with some information. **The description as well as the fields support markdown!**")
199
-
embed.add_field(title="Inline Field 1", value="Inline Field 1", inline=True)
200
-
embed.add_field(title="Inline Field 2", value="Inline Field 2", inline=True)
201
-
embed.add_field(title="Inline Field 3", value="Inline Field 3", inline=True)
198
+
embed.add_field(name="A Normal Field", value="A really nice field with some information. **The description as well as the fields support markdown!**")
199
+
embed.add_field(name="Inline Field 1", value="Inline Field 1", inline=True)
200
+
embed.add_field(name="Inline Field 2", value="Inline Field 2", inline=True)
201
+
embed.add_field(name="Inline Field 3", value="Inline Field 3", inline=True)
202
202
```
203
203
204
204
This small section shows off embed fields. You can add fields to embeds with the [`add_field` method](https://docs.pycord.dev/en/stable/api/data_classes.html#discord.Embed.add_field)
0 commit comments