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
{{ message }}
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Markdown links inside <details> do not render properly when placed immediately after <summary>. This happens because some Markdown parsers require a newline after <summary> for proper processing.
Steps to Reproduce
Add a Markdown link inside <details> like this:
<details>
<summary>Example</summary>
Check out [this link](https://example.com).
</details>
Description
Markdown links inside
<details>
do not render properly when placed immediately after<summary>
. This happens because some Markdown parsers require a newline after<summary>
for proper processing.Steps to Reproduce
<details>
like this:Expected Behavior
The Markdown link should render properly inside
<details>
.Workaround
Adding a newline after
<summary>
can sometimes fix this, but it's fragile as it can be easily removed or refactored out.Proposed Solution
Use an HTML
<a>
tag instead of Markdown links:The text was updated successfully, but these errors were encountered: