ワンクリックで
url-space-after-brackets
Always add a space after URL brackets in Markdown to prevent 404 errors with special characters.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Always add a space after URL brackets in Markdown to prevent 404 errors with special characters.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
A TRefCountPtr/TSharedPtr member in a UE class needs the pointee's full definition, not a forward decl.
When WSL's mirrored networking fails and falls back to "None", plus /etc/wsl.conf has generateResolvConf=false, the distro has no DNS; fix both layers.
When a Windows shell (PowerShell/cmd) feeds a bash script into WSL, CRLF line endings can corrupt the first shell builtin; force LF or pipe via a temp file.
Before "fixing" a recurring error, check git log to see if it was already fixed upstream — the working tree may just be stale.
Plan a Python 3 modernization sweep (f-strings, super(), type hints) as a series of mechanical PRs, not one mega-PR.
Run a quick non-behavioral audit of a Python repo and split findings into bug / dead-code / style PRs.
SOC 職業分類に基づく
| name | url-space-after-brackets |
| description | Always add a space after URL brackets in Markdown to prevent 404 errors with special characters. |
| tags | ["markdown","url","formatting","chinese"] |
You're writing or editing Markdown content that contains URLs, especially when the text after the URL contains Chinese characters, asterisks, or other special characters that could be misinterpreted as part of the URL.
When generating URLs in Markdown without a trailing space, browsers and parsers may incorrectly include subsequent characters as part of the URL, leading to 404 errors:
[中文文档](https://example.com/doc)**重要**
In this example, **重要** becomes part of the URL: https://example.com/doc**重要** which results in a 404 error.
Always add a space after the closing bracket of a URL in Markdown:
[中文文档](https://example.com/doc) **重要**
The space acts as a clear delimiter, ensuring the URL ends where intended.
Wrong way (causes 404):
查看[快速入门指南](https://example.com/guide)了解更多细节。
Resulting URL: https://example.com/guide了解更多细节。
Right way (works correctly):
查看[快速入门指南](https://example.com/guide) 了解更多细节。
Resulting URL: https://example.com/guide
[text](url), , and reference-style links