Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edit embed-limits link #214

Merged
merged 4 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cmd:glob": "env-cmd node dist/deployFunctions/deployGlobal.js",
"cmd:dev": "env-cmd node dist/deployFunctions/deployDev.js",
"validate-tags": "node dist/workflowFunctions/validateTagsWithoutLinks.js",
"validate-tags:withlinks": "snode dist/workflowFunctions/validateTagsWithLinks.js",
"validate-tags:withlinks": "node dist/workflowFunctions/validateTagsWithLinks.js",
"prepare": "is-ci || husky install"
},
"type": "module",
Expand Down
8 changes: 5 additions & 3 deletions tags/tags.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Learn more about slash command limits at the [Discord Developer Documentation](h
[embed-limits]
keywords = ["embedlimits"]
content = """
Learn more about embed limits at the [Discord Developer Documentation](https://discord.com/developers/docs/resources/channel#embed-object-embed-limits)
Learn more about embed limits at the [Discord Developer Documentation](https://discord.com/developers/docs/resources/message#embed-object-embed-limits)
"""

[button-limits]
Expand Down Expand Up @@ -210,6 +210,8 @@ keywords = [
"catch-{",
"update-node",
"abortcontroller",
"readablestream",
"??="
]
content = """
Please update Node.js to the [current LTS](https://nodejs.org/) (long-term support) version!
Expand Down Expand Up @@ -624,7 +626,7 @@ keywords = ["=", "==", "===", "equaltypes", "equal-types"]
content = """
In JavaScript, = is used for assignment, == for loose equality, and === for strict equality checks.
```js
x = 1; // assigning x to a value
x = 1; // assigning a value to x
'1' == 1 // true
'1' === 1 // false
```
Expand Down Expand Up @@ -1200,6 +1202,6 @@ Relative paths base:
keywords = ["network-issues", "connection-reset", "socket-error"]
content = """
Errors such as `ECONNRESET`, `ConnectTimeoutError`, `SocketError: other side closed` indicate a network issue
* Free or shared hosting providers often come with significant limitation
* Free or shared hosting providers often come with significant limitations
* Another indication of these issues are 'Unknown Interaction' errors.
"""
Loading