Describe the bug
All external links across the Guide pages (e.g., "Landscape2 project", "contributing guidelines", "sponsors page", "JSON Schema tooling") currently open in the same browser tab, causing users to navigate away from the documentation unexpectedly.
Steps To Reproduce
- Go to the JSON Schema Landscape site and navigate to the Guide section
- On the Introduction page, click any external link (e.g., "Landscape2 project" or "contributing guidelines")
- Observe that the link opens in the same tab, replacing the current page
- Use the browser back button to return — repeat for links on Adopters, Sponsors, and
Expected Behavior
External links should open in a new tab (target="_blank") so users can:
- Continue reading the documentation without losing their place
- Easily return to the JSON Schema landscape after exploring the linked resource
Current Behavior
Clicking any external link (e.g., on the Introduction page) replaces the current page, forcing users to use the browser's back button to return.
Suggested Fix
Add target="_blank" and rel="noopener noreferrer" to all outbound/external links:
<a href="https://external-site.com" target="_blank" rel="noopener noreferrer">Link Text</a>
Note: rel="noopener noreferrer" should always accompany target="_blank" for security best practices.
Screenshots
Device Information [optional]
- OS:MacOS
- Browser:Chrome
- version:
Are you working on this issue?
Yes
Do you think this work might require an [Architectural Decision Record (ADR)]? (significant or noteworthy)
Yes
Describe the bug
All external links across the Guide pages (e.g., "Landscape2 project", "contributing guidelines", "sponsors page", "JSON Schema tooling") currently open in the same browser tab, causing users to navigate away from the documentation unexpectedly.
Steps To Reproduce
Expected Behavior
External links should open in a new tab (
target="_blank") so users can:Current Behavior
Clicking any external link (e.g., on the Introduction page) replaces the current page, forcing users to use the browser's back button to return.
Suggested Fix
Add
target="_blank"andrel="noopener noreferrer"to all outbound/external links:Screenshots
Device Information [optional]
Are you working on this issue?
Yes
Do you think this work might require an [Architectural Decision Record (ADR)]? (significant or noteworthy)
Yes