feat(ios): put styled HTML on the clipboard when copying - #656
Merged
Conversation
eszlamczyk
approved these changes
Aug 12, 2026
maksg
force-pushed
the
ios-parity/09-copy-html
branch
from
August 13, 2026 10:18
849a165 to
f268da2
Compare
maksg
force-pushed
the
ios-parity/06-voiceover
branch
from
August 13, 2026 11:07
2fa2ef1 to
fe5adb1
Compare
System Copy now writes a public.html flavor alongside plain text, so pasting into rich-text targets keeps headings, inline styles, lists, blockquotes, code blocks, links, and images. The HTML is generated by walking the custom rendering attributes and emitting semantic tags with inline CSS derived from the style config. The system attributed-string HTML exporter was deliberately not used: it drops image URLs, loses list markers and block chrome (drawn by decoration views, absent from the text), and emits unstable CSS. The pasteboard is injectable on MarkdownTextView because headless test processes are not authorized to access UIPasteboard.general. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
maksg
force-pushed
the
ios-parity/09-copy-html
branch
from
August 13, 2026 11:10
f268da2 to
60c5e1c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
System Copy now writes a public.html flavor alongside plain text, so pasting into rich-text targets keeps headings, inline styles, lists, blockquotes, code blocks, links, and images. The HTML is generated by walking the custom rendering attributes and emitting semantic tags with inline CSS derived from the style config.
The system attributed-string HTML exporter was deliberately not used: it drops image URLs, loses list markers and block chrome (drawn by decoration views, absent from the text), and emits unstable CSS.
The pasteboard is injectable on MarkdownTextView because headless test processes are not authorized to access UIPasteboard.general.
What/Why?
Testing
PR Checklist