Source
Jarte comparison research (docs/planning/jarte.md, §3 "Direct rich-document editing as the default experience"): Jarte sits directly on Windows' RTF engine, so fonts, color, paragraph formatting, pictures, and Word/WordPad compatibility are the default experience, not an opt-in layer. QUILL's main path is plain text/Markdown with formatting carried through invisible codes or the optional Rich Text lens — elegant for screen-reader-first authoring, but less of a direct WordPad replacement for someone who doesn't want to learn Markdown or export semantics.
Current state in QUILL
The Rich Text lens already exists as a real, gated feature: core.rich_text_lens in quill/core/feature_catalog.py (~line 149), wired to the view.switch_editing_lens command (quill/core/feature_command_map.py), and referenced in quill/core/settings.py (~line 595, noting it's "locked_off" under at least one profile). This is not a build-from-scratch feature — it's a discoverability and onboarding gap on top of something that already works.
Proposed approach
- Surface "Rich Document" as an explicit, named onboarding choice (in the first-run wizard and/or a profile-adjacent setting) for users who want WordPad-like editing without learning Markdown, Illuminations, or conversion semantics — framed in plain language, not as "enable the Rich Text lens feature flag."
- Audit which profiles currently lock
core.rich_text_lens off and confirm that's still the right default now that it's being promoted as a first-class path for some users.
- Add a clear, in-context "Switch to Rich Document view" affordance (menu + command palette) for users already in a plain-text session who want to convert to this workflow, not just a first-run choice.
Non-goals
- Not changing the underlying Markdown-with-invisible-codes architecture or making Rich Text the new default for everyone — this is about discoverability and framing for the subset of users who want it, not a wholesale philosophy change.
Priority rationale
Medium impact (helps a specific onboarding segment) with high confidence — the hard part (the lens itself) already exists and is production code; this is UX/discoverability work on a known-working feature.
Source
Jarte comparison research (
docs/planning/jarte.md, §3 "Direct rich-document editing as the default experience"): Jarte sits directly on Windows' RTF engine, so fonts, color, paragraph formatting, pictures, and Word/WordPad compatibility are the default experience, not an opt-in layer. QUILL's main path is plain text/Markdown with formatting carried through invisible codes or the optional Rich Text lens — elegant for screen-reader-first authoring, but less of a direct WordPad replacement for someone who doesn't want to learn Markdown or export semantics.Current state in QUILL
The Rich Text lens already exists as a real, gated feature:
core.rich_text_lensinquill/core/feature_catalog.py(~line 149), wired to theview.switch_editing_lenscommand (quill/core/feature_command_map.py), and referenced inquill/core/settings.py(~line 595, noting it's "locked_off" under at least one profile). This is not a build-from-scratch feature — it's a discoverability and onboarding gap on top of something that already works.Proposed approach
core.rich_text_lensoff and confirm that's still the right default now that it's being promoted as a first-class path for some users.Non-goals
Priority rationale
Medium impact (helps a specific onboarding segment) with high confidence — the hard part (the lens itself) already exists and is production code; this is UX/discoverability work on a known-working feature.