Skip to content

Doc: Add a Joplin Cloud plan with more available storage to the website#15504

Draft
personalizedrefrigerator wants to merge 2 commits into
laurent22:devfrom
personalizedrefrigerator:pr/doc/add-pro-100gb-subscription
Draft

Doc: Add a Joplin Cloud plan with more available storage to the website#15504
personalizedrefrigerator wants to merge 2 commits into
laurent22:devfrom
personalizedrefrigerator:pr/doc/add-pro-100gb-subscription

Conversation

@personalizedrefrigerator
Copy link
Copy Markdown
Collaborator

@personalizedrefrigerator personalizedrefrigerator commented May 21, 2026

Summary

This pull request updates the website with a "Pro 100 GB" Joplin Cloud plan.

This pull request is currently a draft: There are supporting backend changes that still need to be merged and/or enabled.

@personalizedrefrigerator personalizedrefrigerator changed the title Doc: Add a Pro 100 GB plan Doc: Add a Joplin Cloud plan with more available storage May 21, 2026
@personalizedrefrigerator personalizedrefrigerator changed the title Doc: Add a Joplin Cloud plan with more available storage Doc: Add a Joplin Cloud plan with more available storage to the website May 21, 2026
@coderabbitai coderabbitai Bot added enhancement Feature requests and code enhancements server Issues related to Joplin Server labels May 21, 2026
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.

Comment thread Assets/WebsiteAssets/css/site.css
<p>
<i class="fas fa-check feature feature-on"></i>{{label}}
{{#actions}}
<button type="button" class="action-link action-{{actionId}}">→ <span class="action-label">{{label}}</span></button>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Mark the decorative arrow as aria-hidden.

The is purely decorative; screen readers will announce it as "right arrow" before the action label, which is noisy. Wrap it (or add aria-hidden) so only the action label is announced.

♿ Proposed fix
-					<button type="button" class="action-link action-{{actionId}}">→ <span class="action-label">{{label}}</span></button>
+					<button type="button" class="action-link action-{{actionId}}"><span aria-hidden="true">→ </span><span class="action-label">{{label}}</span></button>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<button type="button" class="action-link action-{{actionId}}"><span class="action-label">{{label}}</span></button>
<button type="button" class="action-link action-{{actionId}}"><span aria-hidden="true">→ </span><span class="action-label">{{label}}</span></button>
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@Assets/WebsiteAssets/templates/partials/plan.mustache` at line 31, The
decorative arrow character before the action label is being read by screen
readers; update the button markup for the element with class "action-link" /
"action-{{actionId}}" so the arrow is marked aria-hidden (e.g., wrap the "→" in
a span and add aria-hidden="true" or set aria-hidden on the existing span) and
ensure the visible action label remains in the span with class "action-label" so
only the label is announced.

@joplin-coderabbit-cleanup joplin-coderabbit-cleanup Bot deleted a comment from coderabbitai Bot May 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement Feature requests and code enhancements server Issues related to Joplin Server

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants